Skip to content

Commit

Permalink
fix: pass null for full checksum (#423)
Browse files Browse the repository at this point in the history
  • Loading branch information
sroyal-statsig authored Jan 31, 2025
1 parent 1acdea1 commit c31a7d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/js-client/src/Network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type EvaluationsFetchArgs = {
user?: StatsigUser;
sinceTime?: number;
previousDerivedFields?: Record<string, unknown>;
full_checksum?: string;
full_checksum?: string | null;
};

export default class StatsigNetwork extends NetworkCore {
Expand Down Expand Up @@ -57,6 +57,7 @@ export default class StatsigNetwork extends NetworkCore {
user,
hash: 'djb2',
deltasResponseRequested: false,
full_checksum: null,
};

if (cache?.has_updates) {
Expand Down

0 comments on commit c31a7d0

Please sign in to comment.