Skip to content

Commit

Permalink
chaning to on unexpected error
Browse files Browse the repository at this point in the history
  • Loading branch information
aiday-mar committed Aug 10, 2023
1 parent 645ce1c commit 20d5e4e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ export class StickyModelProvider implements IStickyModelProvider {
}
}
return null;
}).catch(() => {
// error thrown when cancel is called on _updateScheduler while previous promise has not completed
}).catch((error) => {
onUnexpectedError(error);
return null;
});
}
Expand Down

0 comments on commit 20d5e4e

Please sign in to comment.