Skip to content

Conversation

@omegaui
Copy link

@omegaui omegaui commented Aug 29, 2025

My app wasn't compiling on the latest version available on pub. Compiler said the error was at CustomLocation file, the Runnable object expected is not null but a nullable object was being passed to the function.

For now I have just put a not null change but you should look into handling this.
Thanks.

t.start()
true
} else {
runnable?.let {
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if you want to make it correctly you can change to this

 runnable?.let { runnable ->
  mRunOnFirstFix.addLast(runnable)
  }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants