Skip to content

Commit

Permalink
join querystring with last part
Browse files Browse the repository at this point in the history
  • Loading branch information
glena committed Dec 1, 2016
1 parent 91f5cc3 commit 62a6853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/client/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { initClient } from './index';
export function fetchClientSettings(clientID, clientBaseUrl, cb) {
load({
method: "setClient",
url: urljoin(clientBaseUrl, 'client', `${clientID}.js`, `?t${+new Date()}`),
url: urljoin(clientBaseUrl, 'client', `${clientID}.js?t${+new Date()}`),
check: o => o && o.id === clientID,
cb: cb
});
Expand Down

0 comments on commit 62a6853

Please sign in to comment.