diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-03-04 10:11:47 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-03-04 10:11:47 +0530 |
commit | 6a704f60d47e51c32622dbb4689ebf9459bf1063 (patch) | |
tree | f10777ca4ae07ed84b7db94d531a543f5c6f999f | |
parent | bae39ca920a703babfed49a16a5da0ed67338b51 (diff) |
mpv: correct code comment
-rw-r--r-- | main.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ local sub_needed = function () duration = mp.get_property('duration') if not duration or tonumber(duration) < 900 then return false - end -- ensure duration is less than 15 minutes + end -- ensure duration is more than 15 minutes for _, v in pairs(mp.get_property_native('track-list')) do if v['type'] == 'sub' then |