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
Progress Listener cannot listen to request with query that contains "/", because mResponseListeners Hashmap failed to detect item, when requested "/" change into "%2F", so containsKey(key) will return false
I've already tried to replace "/" before request with "%2F" but it reversed now in the HashMap key it has "/" but the checked key contains "%2F", so it still return false.
Potential Problem
Please check on ProgressManager.java on line 259
Potential Fix
Implement more complex search algorithm for checking key, or custom check on HashMap key.
The text was updated successfully, but these errors were encountered:
Problem
Progress Listener cannot listen to request with query that contains "/", because mResponseListeners Hashmap failed to detect item, when requested "/" change into "%2F", so containsKey(key) will return false
ex.
the start_date and end_date will cause Problem.
Already Done
I've already tried to replace "/" before request with "%2F" but it reversed now in the HashMap key it has "/" but the checked key contains "%2F", so it still return false.
Potential Problem
Please check on ProgressManager.java on line 259
Potential Fix
Implement more complex search algorithm for checking key, or custom check on HashMap key.
The text was updated successfully, but these errors were encountered: