refactor: trakt/download hardening and cleanup sweep

This commit is contained in:
edde746
2026-04-21 13:57:03 +02:00
parent 93d196572f
commit ee020d81bd
66 changed files with 1526 additions and 2167 deletions
-11
View File
@@ -243,15 +243,4 @@ class PlexImageHelper {
return true;
}
/// Creates a consistent cache key for rounded dimensions
static String generateCacheKey({
required String originalPath,
required int width,
required int height,
String? serverId,
}) {
final serverPrefix = serverId != null ? '${serverId}_' : '';
return '${serverPrefix}transcode_${width}x${height}_${originalPath.hashCode}';
}
}