We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad2539c commit b3e4a24Copy full SHA for b3e4a24
2 files changed
app/src/main/java/com/github/libretube/services/DownloadService.kt
@@ -172,7 +172,7 @@ class DownloadService : LifecycleService() {
172
try {
173
ImageHelper.downloadImage(
174
this@DownloadService,
175
- streams.thumbnailUrl,
+ ProxyHelper.rewriteUrlUsingProxyPreference(streams.thumbnailUrl),
176
thumbnailTargetPath
177
)
178
} catch (e: Exception) {
app/src/main/java/com/github/libretube/util/TextUtils.kt
@@ -29,7 +29,7 @@ object TextUtils {
29
/**
30
* Reserved characters by unix which can not be used for file name.
31
*/
32
- const val RESERVED_CHARS = "?:\"*|/\\<>\u0000"
+ const val RESERVED_CHARS = "#?:\"*|/\\<>\u0000"
33
34
35
* Date time formatter which uses the [FormatStyle.MEDIUM] format style.
0 commit comments