From a2b532ed1aa11eaa6ce6035bdb09f02ce33a3baf Mon Sep 17 00:00:00 2001 From: NTD Date: Thu, 12 Apr 2018 11:29:15 -0400 Subject: [PATCH] Maybe fix SyntaxError: non-generator method definitions may not contain yield in MigrationUtils.jsm --- application/palemoon/components/migration/MigrationUtils.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/palemoon/components/migration/MigrationUtils.jsm b/application/palemoon/components/migration/MigrationUtils.jsm index 882c7cf324..4461b8af0e 100644 --- a/application/palemoon/components/migration/MigrationUtils.jsm +++ b/application/palemoon/components/migration/MigrationUtils.jsm @@ -491,7 +491,7 @@ this.MigrationUtils = Object.freeze({ // Iterates the available migrators, in the most suitable // order for the running platform. - get migrators() { + migrators: function* MU_migrators() { let migratorKeysOrdered = [ #ifdef XP_WIN "firefox", "ie", "chrome", "safari"