You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DDLogInfo(@"DropBox Available Space : %@MB", allocated);
67
68
68
-
//check if dopbox running out of space
69
-
if ((allocated.integerValue - usage.integerValue) < abDropboxOutOfSpaceWarningSize){
70
-
[Common showAlertWithTitle:@"Warning"andMessage:[NSStringstringWithFormat:@"You're running out of Dropbox space\n\n%@MB of %@MB used.", usage, allocated]];
71
-
}
69
+
dispatch_async(dispatch_get_main_queue(), ^{
70
+
[selfupdateDropboxButton];
71
+
72
+
//check if dopbox running out of space
73
+
if ((allocated.integerValue - usage.integerValue) < abDropboxOutOfSpaceWarningSize){
74
+
[Common showAlertWithTitle:@"Warning"andMessage:[NSStringstringWithFormat:@"You're running out of Dropbox space\n\n%@MB of %@MB used.", usage, allocated]];
0 commit comments