Refactoring

pull/156/head
M66B 5 years ago
parent 523cbca2b7
commit aba421c470

@ -99,8 +99,8 @@ public class EntityAccount extends EntityOrder implements Serializable {
return "imap" + (starttls ? "" : "s");
}
static String getNotificationChannelId(long account) {
return "notification" + (account == 0 ? "" : "." + account);
static String getNotificationChannelId(long id) {
return "notification" + (id == 0 ? "" : "." + id);
}
void createNotificationChannel(Context context) {

Loading…
Cancel
Save