Merge pull request #434 from KWottrich/Fix-Inconsistencies

This commit is contained in:
Neil Burrows 2021-05-01 10:18:27 +01:00 committed by GitHub
commit b37450fc02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -319,7 +319,7 @@ end function
function ReportPlayback(video, state = "update" as string)
if video = invalid or video.position = invalid then return void
if video = invalid or video.position = invalid then return
params = {
"PlaySessionId": video.PlaySessionId,

View File

@ -82,7 +82,7 @@ function get_dialog_result(dialog, port)
msg = wait(0, port)
if isNodeEvent(msg, "backPressed") then
return -1
elseif isNodeEvent(msg, "itemSelected")
else if isNodeEvent(msg, "itemSelected")
return dialog.findNode("optionList").itemSelected
end if
end while