Skip to content

Commit e0225de

Browse files
entoTheAMM
authored andcommittedNov 3, 2019
Duration may be nil when decoder has been uninited
This fixes this error that gets logged every time a video finishes playing: ``` ... [vd] Uninit decoder. [client_osc] [client_osc] stack traceback: [client_osc] mp.defaults:366: in function 'handler' [client_osc] mp.defaults:460: in function 'call_event_handlers' [client_osc] mp.defaults:494: in function 'dispatch_events' [client_osc] mp.defaults:453: in function <mp.defaults:452> [client_osc] [C]: at 0x5745da2c25d0 [client_osc] [C]: at 0x5745da2c38d0 [client_osc] Lua error: ...jmrbar-mpv_thumbnail_script-0.4.2/scripts/client_osc.lua:1087: attempt to compare nil with number ... ```
1 parent d31228f commit e0225de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/thumbnailer_shared.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ function Thumbnailer:register_client()
280280
local duration = mp.get_property_native("duration")
281281
local max_duration = thumbnailer_options.autogenerate_max_duration
282282

283-
if self.state.available and thumbnailer_options.autogenerate then
283+
if duration ~= nil and self.state.available and thumbnailer_options.autogenerate then
284284
-- Notify if autogenerate is on and video is not too long
285285
if duration < max_duration or max_duration == 0 then
286286
self:start_worker_jobs()

0 commit comments

Comments
 (0)
Please sign in to comment.