Skip to content

Commit

Permalink
bugfixing
Browse files Browse the repository at this point in the history
  • Loading branch information
marcolarosa committed Nov 29, 2023
1 parent d79c702 commit 78ec8c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ async function getResourceStatus() {
});
if (response.status === 200) {
response = await response.json();
data.status = response.status;
data.status = response?.status ?? false;
}
}
function deleteTranscription() {
Expand Down

0 comments on commit 78ec8c5

Please sign in to comment.