Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(ActivityTab): Typo in try-catch
Signed-off-by: Ferdinand Thiessen <[email protected]>
  • Loading branch information
susnux committed Jan 16, 2024
commit ed845042a85a2e10c635b5005532a889e3549e15
2 changes: 1 addition & 1 deletion src/views/ActivityTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export default {
},
)
return data.ocs.data
} catch (e) {
} catch (error) {
// Status 304 is not an error.
if (error.response !== undefined && error.response.status === 304) {
return []
Expand Down