We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2c0129 commit a1856dbCopy full SHA for a1856db
src/services/splitApi.ts
@@ -53,7 +53,7 @@ export function splitApiFactory(
53
},
54
55
fetchSplitChanges(since: number, noCache?: boolean, till?: number) {
56
- const url = `${urls.sdk}/splitChanges?s=${FLAGS_SPEC}&since=${since}${till ? '&till=' + till : ''}${filterQueryString || ''}`;
+ const url = `${urls.sdk}/splitChanges?s=${FLAGS_SPEC}&since=${since}${filterQueryString || ''}${till ? '&till=' + till : ''}`;
57
return splitHttpClient(url, noCache ? noCacheHeaderOptions : undefined, telemetryTracker.trackHttp(SPLITS))
58
.catch((err) => {
59
if (err.statusCode === 414) settings.log.error(ERROR_TOO_MANY_SETS);
0 commit comments