Skip to content

Commit

Permalink
Change shared id (#1389)
Browse files Browse the repository at this point in the history
  • Loading branch information
aviraxp committed Feb 1, 2024
1 parent 409db67 commit d0755f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/me/iacn/biliroaming/hook/ShareHook.kt
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ class ShareHook(classLoader: ClassLoader) : BaseHook(classLoader) {
it[0] == "start_progress" -> "start_progress=${it[1]}&t=${it[1].toLong() / 1000}"
else -> null
}
}.joinToString("&", postfix = "&unique_k=114514")
}.joinToString("&", postfix = "&unique_k=2333")
newUrl.encodedQuery(query)
} else {
newUrl.appendQueryParameter("unique_k", "114514")
newUrl.appendQueryParameter("unique_k", "2333")
}
return newUrl.build().toString()
}
Expand Down

0 comments on commit d0755f2

Please sign in to comment.