Skip to content

Commit a1856db

Browse files
Nicolas ZelayaNicolas Zelaya
authored andcommitted
Fixing parameters order
1 parent e2c0129 commit a1856db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/splitApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export function splitApiFactory(
5353
},
5454

5555
fetchSplitChanges(since: number, noCache?: boolean, till?: number) {
56-
const url = `${urls.sdk}/splitChanges?s=${FLAGS_SPEC}&since=${since}${till ? '&till=' + till : ''}${filterQueryString || ''}`;
56+
const url = `${urls.sdk}/splitChanges?s=${FLAGS_SPEC}&since=${since}${filterQueryString || ''}${till ? '&till=' + till : ''}`;
5757
return splitHttpClient(url, noCache ? noCacheHeaderOptions : undefined, telemetryTracker.trackHttp(SPLITS))
5858
.catch((err) => {
5959
if (err.statusCode === 414) settings.log.error(ERROR_TOO_MANY_SETS);

0 commit comments

Comments
 (0)