forked from hummypkg/webif
1
0
Fork 0

Fix string match variable

This commit is contained in:
prpr 2023-10-07 00:03:39 +01:00
parent 15c3fcb239
commit 46e4bddd56
1 changed files with 1 additions and 1 deletions

View File

@ -6,6 +6,6 @@ source /mod/webif/lib/setup
httpheader
set file [cgi_get file]
if {[string compare -nocase [file extension $x] ".hmt"]} {
if {[string compare -nocase [file extension $file] ".hmt"]} {
puts [exec /mod/bin/ffprobe -hide_banner $file]
}