1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-07 15:06:44 +00:00

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