mirror of
https://github.com/MoonTechLab/LunaTV.git
synced 2026-02-22 18:44:44 +08:00
fix: try to fix year
This commit is contained in:
@@ -60,7 +60,7 @@ export class DbManager {
|
||||
userName: string,
|
||||
source: string,
|
||||
id: string,
|
||||
record: Omit<PlayRecord, 'user_id'>
|
||||
record: PlayRecord
|
||||
): Promise<void> {
|
||||
const key = generateStorageKey(source, id);
|
||||
await this.storage.setPlayRecord(userName, key, record);
|
||||
@@ -129,7 +129,7 @@ export class DbManager {
|
||||
userName: string,
|
||||
source: string,
|
||||
id: string,
|
||||
favoriteData?: Omit<Favorite, 'user_id'>
|
||||
favoriteData?: Favorite
|
||||
): Promise<boolean> {
|
||||
const isFav = await this.isFavorited(userName, source, id);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user