mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
Format code
This commit is contained in:
parent
8f8175604f
commit
c99fc16aa0
1 changed files with 9 additions and 6 deletions
|
@ -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>? metadata,
|
||||
OrNull<bool>? isArchived,
|
||||
OrNull<DateTime>? overrideDateTime,
|
||||
bool? favorite}) async {
|
||||
updateProperty(
|
||||
Account account,
|
||||
File f, {
|
||||
OrNull<Metadata>? metadata,
|
||||
OrNull<bool>? isArchived,
|
||||
OrNull<DateTime>? overrideDateTime,
|
||||
bool? favorite,
|
||||
}) async {
|
||||
_log.info("[updateProperty] ${f.path}");
|
||||
await _c.sqliteDb.use((db) async {
|
||||
final rowIds = await db.accountFileRowIdsOf(f, appAccount: account);
|
||||
|
|
Loading…
Reference in a new issue