mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-31 04:04:21 -04:00
Cleanup image redownload
This commit is contained in:
parent
a8b25b9ef6
commit
7824a78e85
@ -62,7 +62,7 @@ public class MiscRepository(
|
|||||||
}.Select(x => GetSql(x));
|
}.Select(x => GetSql(x));
|
||||||
string sql = string.Join(" union all ", queries);
|
string sql = string.Join(" union all ", queries);
|
||||||
IEnumerable<Image?> ret = await database.QueryAsync<Image?>(sql);
|
IEnumerable<Image?> ret = await database.QueryAsync<Image?>(sql);
|
||||||
return ret.Where(x => x != null).ToArray() as Image[];
|
return ret.ToArray() as Image[];
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task DownloadMissingImages()
|
public async Task DownloadMissingImages()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user