Skip to content

Commit

Permalink
Fix googleTV startup crash
Browse files Browse the repository at this point in the history
  • Loading branch information
DaVinci9196 authored and ale5000-git committed Feb 21, 2024
1 parent 35545b1 commit b30b06f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ class PhenotypeServiceImpl : IPhenotypeService.Stub() {

override fun getExperimentTokens(callbacks: IPhenotypeCallbacks, p1: String?, logSourceName: String?) {
Log.d(TAG, "getExperimentTokens($p1, $logSourceName)")
callbacks.onExperimentTokens(Status.SUCCESS, ExperimentTokens())
val experimentTokens = ExperimentTokens()
experimentTokens.field2 = ""
callbacks.onExperimentTokens(Status.SUCCESS, experimentTokens)
}

override fun getDogfoodsToken(callbacks: IPhenotypeCallbacks) {
Expand Down

0 comments on commit b30b06f

Please sign in to comment.