Skip to content

Commit

Permalink
v2.1.6
Browse files Browse the repository at this point in the history
- Exclude invalid settings from export [#35](#35)
  • Loading branch information
sneat authored Oct 27, 2022
2 parents f8fe14b + 9e6ff10 commit e9fe1c9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v2.1.6

- Exclude invalid settings from export [#35](https://github.com/League-of-Foundry-Developers/foundryvtt-forien-copy-environment/issues/35)

## v2.1.5

- Allow non-GM users to use the module.
Expand Down
2 changes: 1 addition & 1 deletion module.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"flags": {
"allowBugReporter": true
},
"version": "2.1.5",
"version": "2.1.6",
"minimumCoreVersion": "0.6.0",
"compatibleCoreVersion": "10",
"compatibility": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ export default class Core extends FormApplication {
return !sameValue && !excludeModules.some((e) => v.namespace === e);
} catch (e) {
console.error(`Copy Environment | Could not export settings for ${v.namespace}.${v.key} due to an error. Please report this as an issue on GitHub.`, e);
return true;
return false;
}
})
.map(([k, v]) => ({
Expand Down

0 comments on commit e9fe1c9

Please sign in to comment.