Skip to content

Commit

Permalink
Merge pull request #800 from skaut/version-2.10.3
Browse files Browse the repository at this point in the history
Version 2.10.3
  • Loading branch information
marekdedic authored Jan 11, 2021
2 parents 064d0b6 + cf8d083 commit b6cdbda
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"phpmd/phpmd": "^2.6",
"phan/phan": "^4.0",
"phpunit/phpunit": "^7.5",
"skaut/phan-wordpress-stubs": "^1.0.0"
"skaut/phan-wordpress-stubs": "^1.0.0",
"symfony/polyfill-mbstring": "^1.20.0 <1.22"
}
}
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,6 @@ gulp.task( 'build:deps:composer:other', function () {
'vendor/symfony/polyfill-intl-idn/bootstrap.php',
'vendor/symfony/polyfill-intl-idn/Idn.php',
'vendor/symfony/polyfill-mbstring/bootstrap.php',
'vendor/symfony/polyfill-mbstring/bootstrap80.php',
'vendor/symfony/polyfill-mbstring/Mbstring.php',
],
{ base: 'vendor/' }
Expand Down
2 changes: 1 addition & 1 deletion src/php/class-api-facade.php
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ private static function list_files( $parent_id, $fields, $order_by, $pagination_
throw new \Sgdg\Exceptions\Unsupported_Value_Exception( $fields, 'list_files' );
}
if ( $fields->check( array( 'id', 'name' ) ) ) {
$mime_type_check = '(mimeType contains "' . $mime_type_prefix . '" or (mimeType = "application/vnd.google-apps.shortcut" and shortcutDetails.targetMimeType contains "' . $mime_type_prefix . '"))';
$mime_type_check = '(mimeType contains "' . $mime_type_prefix . '" or (mimeType contains "application/vnd.google-apps.shortcut" and shortcutDetails.targetMimeType contains "' . $mime_type_prefix . '"))';
} else {
$mime_type_check = 'mimeType contains "' . $mime_type_prefix . '"';
}
Expand Down

0 comments on commit b6cdbda

Please sign in to comment.