Skip to content

Commit

Permalink
Fix unable to create new livestream
Browse files Browse the repository at this point in the history
stream_update ended up being called without a claim_id
  • Loading branch information
infinite-persistence committed Aug 14, 2023
1 parent 17cedd9 commit 091c625
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# --- Minimum Version (Format: YYYYMMDDNNN) ---
# Bump this when we want to nudge the user to refresh.
MINIMUM_VERSION=20230814001
MINIMUM_VERSION=20230814002

# This is 'false' in the production instances:
IGNORE_MINIMUM_VERSION=true
Expand Down
2 changes: 1 addition & 1 deletion web/setup/publish-v4-tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ export function createClaim(
},
body: JSON.stringify({
jsonrpc: '2.0',
method: params.claim_id || !sdkFilePath ? 'stream_update' : 'stream_create',
method: params.claim_id ? 'stream_update' : 'stream_create',
params: sdkParams,
id: Date.now(),
}),
Expand Down

0 comments on commit 091c625

Please sign in to comment.