Skip to content

Commit

Permalink
GH-1877 Filter /api/status/instance logs from web console (Fix #1877)
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed Aug 8, 2023
1 parent 830d72c commit 15de87b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reposilite-frontend/src/store/console/connection.js
Expand Up @@ -82,7 +82,7 @@ export default function useConsole() {
}

connection.value.onmessage = (event) => {
if (event.data != "keep-alive")
if (event.data != "keep-alive" && !event.data.toString().includes("GET /api/status/instance from"))
onMessage?.value(event.data)
}

Expand Down

0 comments on commit 15de87b

Please sign in to comment.