Refactoring

This commit is contained in:
M66B
2019-05-16 09:08:06 +02:00
parent 523cbca2b7
commit aba421c470

View File

@@ -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) {