pre-filling subscription form for logged-in users
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user