Remove call to sync folders

This commit is contained in:
Vishnu Mohandas 2020-10-12 23:55:09 +05:30
parent bae1ee9d65
commit 2f89dcde2a

View file

@ -6,7 +6,6 @@ import 'package:path_provider/path_provider.dart';
import 'package:photos/core/constants.dart';
import 'package:photos/core/configuration.dart';
import 'package:photos/services/favorites_service.dart';
import 'package:photos/services/folder_service.dart';
import 'package:photos/services/memories_service.dart';
import 'package:photos/services/sync_service.dart';
import 'package:photos/ui/home_widget.dart';
@ -51,9 +50,6 @@ void _main() async {
}
void _sync() async {
FolderSharingService.instance.sync().catchError((e) {
_logger.warning(e);
});
SyncService.instance.sync().catchError((e) {
_logger.warning(e);
});