MOBILE-3435 utils: replace irregular whitespace causing error

main
Pau Ferrer Ocaña 2020-08-26 09:24:30 +02:00
parent d041cfcf52
commit 22e27fb65d
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;