Skip to content

Commit

Permalink
fix(whitelist): Block Talk base page as well
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Jan 26, 2024
1 parent 817b5d1 commit c1c7db4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/AppWhitelist.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ private function getRequestedApp($url): string {
return 'dav';
} elseif (substr($url, 0, 5) === '/dav/') {
return 'dav';
} elseif (substr($url, 0, 6) === '/call/') {
return 'spreed';
} elseif (substr($url, 0, 10) === '/settings/') {
return 'settings';
} elseif (substr($url, 0, 8) === '/avatar/') {
Expand Down

0 comments on commit c1c7db4

Please sign in to comment.