Skip to content

Commit

Permalink
fix(27098): fix conversion criteria
Browse files Browse the repository at this point in the history
  • Loading branch information
Yurujai committed Oct 17, 2024
1 parent c8723cb commit a7efdf6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ function generate_iframe(string $url, string $isMultiStream): string

function checkAndValidateURL(string $url): string
{
if(substr_count($url, '?') > 1) {
if(substr_count($url, '?') === 1) {
return $url;
}

Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

defined('MOODLE_INTERNAL') || exit();

$plugin->version = 2024101700;
$plugin->version = 2024101701;
$plugin->requires = 2016112900;
$plugin->maturity = MATURITY_STABLE;
$plugin->component = 'filter_pumukitmedia';
Expand Down

0 comments on commit a7efdf6

Please sign in to comment.