mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-06 00:53:26 +02:00
Added Gmail label support
This commit is contained in:
@@ -1387,6 +1387,12 @@ public class Helper {
|
||||
}
|
||||
|
||||
static boolean equal(String[] a1, String[] a2) {
|
||||
if (a1 == null && a2 == null)
|
||||
return true;
|
||||
|
||||
if (a1 == null || a2 == null)
|
||||
return false;
|
||||
|
||||
if (a1.length != a2.length)
|
||||
return false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user