mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-07 15:06:44 +00:00
Refactoring
This commit is contained in:
parent
523cbca2b7
commit
aba421c470
1 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue