From c99fc16aa0d3e57e0986b1ac83fb2a2c69377ad7 Mon Sep 17 00:00:00 2001 From: Ming Ming Date: Sat, 20 Aug 2022 18:33:57 +0800 Subject: [PATCH] Format code --- app/lib/entity/file/data_source.dart | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/app/lib/entity/file/data_source.dart b/app/lib/entity/file/data_source.dart index 17eb0bf5..b4ca58f4 100644 --- a/app/lib/entity/file/data_source.dart +++ b/app/lib/entity/file/data_source.dart @@ -57,7 +57,7 @@ class FileWebdavDataSource implements FileDataSource { customProperties: [ "app:metadata", "app:is-archived", - "app:override-date-time" + "app:override-date-time", ], ); } @@ -443,11 +443,14 @@ class FileSqliteDbDataSource implements FileDataSource { } @override - updateProperty(Account account, File f, - {OrNull? metadata, - OrNull? isArchived, - OrNull? overrideDateTime, - bool? favorite}) async { + updateProperty( + Account account, + File f, { + OrNull? metadata, + OrNull? isArchived, + OrNull? overrideDateTime, + bool? favorite, + }) async { _log.info("[updateProperty] ${f.path}"); await _c.sqliteDb.use((db) async { final rowIds = await db.accountFileRowIdsOf(f, appAccount: account);