Skip to content

Commit

Permalink
fix: eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeDombo committed Sep 29, 2023
1 parent 4b87d71 commit 92a8b04
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ export function StreamManagerReducer(state: any, action: any) {
streamSegmentSize: parseInt(action.payload, 10)
};
case "set_streamTtl":
if (action.payload == null || action.payload.length == 0) {
if (action.payload === null || action.payload.length === 0) {
action.callbackError('');
return {
...state,
Expand Down

0 comments on commit 92a8b04

Please sign in to comment.