fixed bug where anilist would display a different users stats if show was not in watchlist

This commit is contained in:
2024-09-16 12:45:57 -04:00
parent 9f8014ff00
commit a24a187c7f
6 changed files with 39 additions and 9 deletions

View File

@ -505,11 +505,11 @@ export namespace main {
this.connections = source["connections"];
}
}
export class SimklWatchList {
export class SimklWatchListType {
anime: anime;
static createFrom(source: any = {}) {
return new SimklWatchList(source);
return new SimklWatchListType(source);
}
constructor(source: any = {}) {