Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
crc-32 committed Feb 8, 2025
1 parent 6aa69c2 commit f1c4bd9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class WebViewPrivatePKJSInterface(private val jsRunner: WebViewJsRunner, private
val entry = lockerDao.getEntryByUuid(uuid.toString())
if (entry != null) {
token = entry.entry.userToken
if (entry.entry.local /*&& token == null*/) {
if (entry.entry.local && token == null) {
Logging.d("App is local, getting sandbox timeline token")
token = JsTokenUtil.getSandboxTimelineToken(uuid)
if (token == null) {
Expand Down

0 comments on commit f1c4bd9

Please sign in to comment.