Skip to content

Commit 10d5dee

Browse files
committed
bug: mising slash in tv connection
1 parent 80baccf commit 10d5dee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hasura/functions/match/get_match_tv_connection_string.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ CREATE OR REPLACE FUNCTION public.get_match_tv_connection_string(match public.ma
3535
use_playcast := get_setting('use_playcast', 'false');
3636

3737
if(use_playcast = 'true' and relay_domain is not null) then
38-
return CONCAT('playcast ', '"', relay_domain, match_id, '"');
38+
return CONCAT('playcast "', relay_domain, '/', match_id, '"');
3939
else
4040
return CONCAT('connect ', CONCAT(server_host, ':', tv_port), '; password ', password);
4141
end if;

0 commit comments

Comments
 (0)