Merge pull request #2488 from crazyserver/MOBILE-3435

MOBILE-3435 utils: replace irregular whitespace causing error
main
Juan Leyva 2020-08-26 11:07:50 +02:00 committed by GitHub
commit e445524ceb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1583,7 +1583,7 @@ export class CoreUtilsProvider {
* @param promise Promise to ignore errors.
* @return Promise with ignored errors.
*/
async ignoreErrors<T>(promise: Promise<T>): Promise<T | undefined> {
async ignoreErrors<T>(promise: Promise<T>): Promise<T | undefined> {
try {
const result = await promise;