Fix issue#2 by replacing \u0026 with & character as the url is encoded
This commit is contained in:
parent
b256cb9bf2
commit
0d5e1a73d2
5 changed files with 48 additions and 11 deletions
12
app/src/main/java/org/fnives/tiktokdownloader/Logger.kt
Normal file
12
app/src/main/java/org/fnives/tiktokdownloader/Logger.kt
Normal 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")
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue