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
EvaporateJS uses an invalid URL for fetching the time if the timeUrl already contains query parameters. It will just append the request time at the end of the URL separated by a ? even if
query parameters already exist. See here: evaporate.js:152.
Steps to reproduce:
Set timeUrl to http://example.com/time?anotherparam=foo
Expected:
EvaporateJS should get http://example.com/time?anotherparam=foo&requestTime=...
EvaporateJS uses an invalid URL for fetching the time if the
timeUrl
already contains query parameters. It will just append the request time at the end of the URL separated by a?
even ifquery parameters already exist. See here: evaporate.js:152.
Steps to reproduce:
Set timeUrl to
http://example.com/time?anotherparam=foo
Expected:
EvaporateJS should get
http://example.com/time?anotherparam=foo&requestTime=...
Observed:
EvaporateJS gets
http://example.com/time?anotherparam=foo?requestTime=...
The text was updated successfully, but these errors were encountered: