Update class-wc-download-handler.php

This commit is contained in:
Ovidiu Liuta 2022-03-22 14:45:42 +02:00 committed by GitHub
parent 867f26da8b
commit 4c97d8e757
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ class WC_Download_Handler {
$file_path = (is_ssl() ? 'https:' : 'http:') . $file_path;
return array(
'remote_file' => true,
'file_path' => apply_filters( 'woocommerce_download_parse_remote_file_path', $file_path, true ),
'file_path' => apply_filters( 'woocommerce_download_parse_remote_file_path', $file_path ),
);
}