summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/obswebsocket.cr2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/obswebsocket.cr b/src/obswebsocket.cr
index 8c1061a..aea6eed 100644
--- a/src/obswebsocket.cr
+++ b/src/obswebsocket.cr
@@ -471,7 +471,7 @@ module OBS
def initialize( @obs : OBS::WebSocket )
end
def populate
- d = @obs.send_sync( reschan, OBS.req( "GetVideoSettings" ) )
+ d = @obs.send_sync( OBS.req( "GetVideoSettings" ) )
if ( rdata = d["responseData"]? )
@settings = Hash(String, String | Bool | Int64 | Float64 ).from_json(rdata.to_json)
else