mirror of
https://gitlab.com/foxixus/neomovies_mobile.git
synced 2025-10-28 03:58:50 +05:00
fix
This commit is contained in:
@@ -42,7 +42,7 @@ class MovieDetailProvider with ChangeNotifier {
|
||||
notifyListeners();
|
||||
|
||||
if (_movie != null) {
|
||||
_imdbId = await _apiClient.getImdbId(mediaId, mediaType);
|
||||
_imdbId = await _apiClient.getImdbId(mediaId.toString(), mediaType);
|
||||
}
|
||||
} catch (e) {
|
||||
_error = e.toString();
|
||||
|
||||
@@ -48,7 +48,7 @@ class ReactionsProvider with ChangeNotifier {
|
||||
|
||||
if (_authProvider.isAuthenticated) {
|
||||
final userReactionResult = await _repository.getMyReaction(mediaType, mediaId);
|
||||
_userReaction = userReactionResult.reactionType;
|
||||
_userReaction = userReactionResult?.reactionType;
|
||||
} else {
|
||||
_userReaction = null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user