Browse Source

Don't filter by HTTP verb - older firmwares are using GET rather than HEAD

Michael Herger 3 years ago
parent
commit
5c56abfe75
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugin/SqueezeESP32/FirmwareHelper.pm

+ 1 - 1
plugin/SqueezeESP32/FirmwareHelper.pm

@@ -163,7 +163,7 @@ sub handleFirmwareDownload {
 	}
 
 	# this is the magic request used on the client to figure out whether the plugin does support download proxying
-	if ($path =~ /^(?:-99|-check.bin)$/ && $request->method eq 'HEAD') {
+	if ($path =~ /^(?:-99|-check.bin)$/) {
 		$response->code(204);
 		$response->header('Access-Control-Allow-Origin' => '*');