You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pathExtensionPredicate parameter is currently nullable on Java side because because UriUtils.extractFileExtension(request.path()) can return null, so it signature should be changed from (String) -> Boolean to (String?) -> Boolean on Kotlin side to avoid a NullPointerException when there is no extension.
The text was updated successfully, but these errors were encountered:
pathExtension
Predicate
parameter is currently nullable on Java side becausebecause UriUtils.extractFileExtension(request.path())
can returnnull
, so it signature should be changed from(String) -> Boolean
to(String?) -> Boolean
on Kotlin side to avoid aNullPointerException
when there is no extension.The text was updated successfully, but these errors were encountered: