Fix issue#2 by replacing \u0026 with & character as the url is encoded

This commit is contained in:
Gergely Hegedus 2022-04-21 14:18:10 +03:00
parent b256cb9bf2
commit 0d5e1a73d2
5 changed files with 48 additions and 11 deletions

View file

@ -0,0 +1,12 @@
package org.fnives.tiktokdownloader
object Logger {
private const val TAG = "TTDTag"
fun logMessage(message: String) {
if (BuildConfig.DEBUG) {
System.err.println("TTDTag $message")
}
}
}