We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80baccf commit 10d5deeCopy full SHA for 10d5dee
1 file changed
hasura/functions/match/get_match_tv_connection_string.sql
@@ -35,7 +35,7 @@ CREATE OR REPLACE FUNCTION public.get_match_tv_connection_string(match public.ma
35
use_playcast := get_setting('use_playcast', 'false');
36
37
if(use_playcast = 'true' and relay_domain is not null) then
38
- return CONCAT('playcast ', '"', relay_domain, match_id, '"');
+ return CONCAT('playcast "', relay_domain, '/', match_id, '"');
39
else
40
return CONCAT('connect ', CONCAT(server_host, ':', tv_port), '; password ', password);
41
end if;
0 commit comments