Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Neto committed Jul 15, 2024
1 parent d179df2 commit da22e28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/CustomizeAdvanced/actionButton.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
if (file_exists($mp3File)) {
$mp3URL = getVideosURLAudio($mp3File, true);
var_dump($mp3URL);
$mp3URL['url'] = addQueryStringParameter($mp3URL['url'], 'download', 1);
$mp3URL['mp3']['url'] = addQueryStringParameter($mp3URL['mp3']['url'], 'download', 1);
?>
<a href="<?php echo $mp3URL['url']; ?>" class="btn btn-default no-outline" data-toggle="tooltip" title="<?php echo __("MP3"); ?>" target="_blank">
<a href="<?php echo $mp3URL['mp3']['url']; ?>" class="btn btn-default no-outline" data-toggle="tooltip" title="<?php echo __("MP3"); ?>" target="_blank">
<i class="fas fa-download"></i> <?php echo __("MP3"); ?>
</a>
<?php
Expand Down

0 comments on commit da22e28

Please sign in to comment.