Compare commits

...

3 Commits

Author SHA1 Message Date
662f14282f move identified before start_driver 2023-08-17 16:28:43 +01:00
2e0e584d3a refactor 2023-08-17 16:18:50 +01:00
a8425cf7cd refactor 2023-08-17 16:13:57 +01:00
2 changed files with 4 additions and 11 deletions

View File

@ -25,19 +25,12 @@ module OBSWS
class OBSWSRequestError < OBSWSError
attr_reader :req_name, :code
def initialize(req_name, code, msg)
def initialize(req_name, code, comment)
@req_name = req_name
@code = code
@msg = msg
message = "Request #{@req_name} returned code #{@code}."
message << " With message: #{comment}" if comment
super(message)
end
def message
msg = [
"Request #{@req_name} returned code #{@code}."
]
msg << "With message: #{@msg}" if @msg
msg.join(" ")
end
end
end

View File

@ -29,8 +29,8 @@ module OBSWS
port = kwargs[:port] || 4455
@password = kwargs[:password] || ""
@subs = kwargs[:subs] || 0
setup_driver(host, port) and start_driver
@identified = Identified.new
setup_driver(host, port) and start_driver
WaitUtil.wait_for_condition(
"successful identification",
delay_sec: 0.01,