Skip to content

Commit 234d1b7

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 90d50ae + d0390c8 commit 234d1b7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/blacklist-extensions.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function should_remove(filename)
4646
return false
4747
end
4848
local extension = string.match(filename, "%.([^./]+)$")
49-
if not extension and opts.remove_file_without_extension then
49+
if not extension and opts.remove_files_without_extension then
5050
return true
5151
end
5252
if extension and exclude(string.lower(extension)) then
@@ -69,7 +69,7 @@ function process(playlist_count)
6969
end
7070
end
7171
if removed == #playlist then
72-
msg.warn("Removed eveything from the playlist")
72+
msg.warn("Removed everything from the playlist")
7373
end
7474
end
7575

scripts/blur-edges.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function set_blur()
3838
if applied then return end
3939
if not mp.get_property("video-out-params") then return end
4040
if opts.only_fullscreen and not mp.get_property_bool("fullscreen") then return end
41-
local video_aspect = mp.get_property_number("video-aspect")
41+
local video_aspect = mp.get_property_number("video-aspect-override")
4242
local ww, wh = mp.get_osd_size()
4343

4444
if math.abs(ww/wh - video_aspect) < 0.05 then return end

0 commit comments

Comments
 (0)