mirror of
https://github.com/Viren070/AIOStreams.git
synced 2025-12-01 23:14:04 +01:00
fix: correctly format IMDb ID value when using anime mappings for RPDB
This commit is contained in:
@@ -93,7 +93,7 @@ export class RPDB {
|
||||
idValue = `${type}-${entry.mappings.themoviedbId}`;
|
||||
} else if (entry.mappings?.imdbId) {
|
||||
idType = 'imdb';
|
||||
idValue = `tt${entry.mappings.imdbId}`;
|
||||
idValue = entry.mappings.imdbId.toString();
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user