Skip to content
Snippets Groups Projects
Commit 5d47467b authored by svornost's avatar svornost
Browse files

"restrictive" is default, don't repeat it. don't be wordy about masturbation....

"restrictive" is default, don't repeat it.  don't be wordy about masturbation.  this is a SUMMARY not a description.
parent 07b2dd11
No related branches found
No related tags found
1 merge request!8494Fixes
...@@ -166,8 +166,10 @@ App.Utils.releaseSummaryLong = function releaseSummaryLong(slave) { ...@@ -166,8 +166,10 @@ App.Utils.releaseSummaryLong = function releaseSummaryLong(slave) {
} }
return ret; return ret;
} else { } else {
let ret = "restrictive";
let permissions = []; let permissions = [];
if (rel.masturbation === 1) {
permissions.push("masturbation");
}
if (rel.partner === 1) { if (rel.partner === 1) {
permissions.push("partner"); permissions.push("partner");
} }
...@@ -180,13 +182,7 @@ App.Utils.releaseSummaryLong = function releaseSummaryLong(slave) { ...@@ -180,13 +182,7 @@ App.Utils.releaseSummaryLong = function releaseSummaryLong(slave) {
if (rel.master === 1) { if (rel.master === 1) {
permissions.push("you"); permissions.push("you");
} }
if (permissions.length > 0) { return permissions.reduce(function(res, ch, i, arr) { return res + (i === arr.length - 1 ? ' and ' : ', ') + ch; });
ret += " but permits " + permissions.reduce(function(res, ch, i, arr) { return res + (i === arr.length - 1 ? ' and ' : ', ') + ch; });
}
if (rel.masturbation === 1) {
ret += ", and allowed to masturbate";
}
return ret;
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment