|
@@ -328,15 +328,17 @@
|
|
|
|
|
|
NSString *messageDebug;
|
|
|
|
|
|
- //[app messageNotification:@"_info_" description:@"This version is beta and only fot TestFlight, send report at ios@nextcloud.com" visible:YES delay:dismissAfterSecond type:TWMessageBarMessageTypeInfo];
|
|
|
+ [app messageNotification:@"_info_" description:@"This version is beta and only fot TestFlight, send report at ios@nextcloud.com" visible:YES delay:dismissAfterSecond type:TWMessageBarMessageTypeInfo];
|
|
|
|
|
|
NSMutableArray *metadatasNet = [app verifyExistsInQueuesUploadSelector:selectorUploadAutomaticAll];
|
|
|
CCMetadataNet *metadataNet = [CCCoreData getTableAutomaticUploadForAccount:app.activeAccount selector:selectorUploadAutomaticAll delete:NO context:nil];
|
|
|
|
|
|
- messageDebug = [NSString stringWithFormat:@"DEBUG UploadAutomaticAll : %lu - %@", [metadatasNet count], metadataNet];
|
|
|
-
|
|
|
- [app messageNotification:@"_info_" description:messageDebug visible:YES delay:dismissAfterSecond type:TWMessageBarMessageTypeInfo];
|
|
|
-
|
|
|
+ if ([metadatasNet count] > 0) {
|
|
|
+
|
|
|
+ messageDebug = [NSString stringWithFormat:@"DEBUG UploadAutomaticAll : %lu - %@", [metadatasNet count], metadataNet];
|
|
|
+
|
|
|
+ [app messageNotification:@"_info_" description:messageDebug visible:YES delay:dismissAfterSecond type:TWMessageBarMessageTypeInfo];
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
} else {
|