diff --git a/lib/services/plex_mappers.dart b/lib/services/plex_mappers.dart index 93ffb135..0eb2a417 100644 --- a/lib/services/plex_mappers.dart +++ b/lib/services/plex_mappers.dart @@ -1007,7 +1007,7 @@ MediaSourceInfo? plexMediaSourceInfoFromCacheJson(Map metadata, final streams = walkStreams( flexibleList(parts.first['Stream']), const PlexFileInfoStreamReader(), - onMalformed: (error, _, __) => appLogger.d('Skipping malformed stream in cached metadata', error: error), + onMalformed: (error, _, _) => appLogger.d('Skipping malformed stream in cached metadata', error: error), ); return MediaSourceInfo( diff --git a/lib/services/trackers/anilist/anilist_auth_service.dart b/lib/services/trackers/anilist/anilist_auth_service.dart index 5865c835..71624f57 100644 --- a/lib/services/trackers/anilist/anilist_auth_service.dart +++ b/lib/services/trackers/anilist/anilist_auth_service.dart @@ -8,7 +8,7 @@ import 'anilist_session.dart'; /// server-side so the device never sees the fragment. The proxy handles both /// state + client_secret; the device just gets the bearer token. class AnilistAuthService extends OAuthProxyAuthServiceBase { - AnilistAuthService({OAuthProxyClient? proxy}) : super(proxy: proxy); + AnilistAuthService({super.proxy}); @override String get service => 'anilist'; diff --git a/lib/services/trackers/mal/mal_auth_service.dart b/lib/services/trackers/mal/mal_auth_service.dart index 81ac25c3..cc97ca99 100644 --- a/lib/services/trackers/mal/mal_auth_service.dart +++ b/lib/services/trackers/mal/mal_auth_service.dart @@ -20,9 +20,7 @@ import 'mal_session.dart'; class MalAuthService extends OAuthProxyAuthServiceBase { final http.Client _http; - MalAuthService({OAuthProxyClient? proxy, http.Client? httpClient}) - : _http = httpClient ?? platform.createPlatformClient(), - super(proxy: proxy); + MalAuthService({super.proxy, http.Client? httpClient}) : _http = httpClient ?? platform.createPlatformClient(); @override String get service => 'mal';