pre-filling subscription form for logged-in users

This commit is contained in:
2022-04-16 23:45:17 +02:00
parent f8ff180891
commit 9bd2cceb7d
5 changed files with 18 additions and 13 deletions

View File

@@ -77,7 +77,7 @@ public class ListMember {
public static String stateText(int state) {
var words = new ArrayList<String>();
if ((state & STATE_OWNER) > 0) words.add("owener");
if ((state & STATE_OWNER) > 0) words.add("owner");
if ((state & STATE_SUBSCRIBER) > 0) words.add("subscriber");
return String.join(", ",words);
}