We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eea8f08 commit ceea2e9Copy full SHA for ceea2e9
2 files changed
src/components/TcpListenerTask.bs
@@ -89,7 +89,9 @@ sub listenToTcp()
89
end if
90
91
if closed or not connection.eOK()
92
- print `closing connection ${socketID}`
+ #if logging
93
+ print `closing connection ${socketID}`
94
+ #end if
95
connection.close()
96
connections.delete(Stri(socketID))
97
src/components/VideoPlayer.bs
@@ -61,6 +61,11 @@ sub buildContentNodeForVideo(castContent as object) as object
61
62
if castContent.url <> invalid then
63
videoContent.url = castContent.url
64
+ else
65
+ #if debug
66
+ print "cast content provided an invalid URL field"
67
+ print castContent
68
69
70
71
videoContent.StreamFormat = mimetype
0 commit comments