We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e25a65f commit dcb93ebCopy full SHA for dcb93eb
module.json
@@ -2,7 +2,7 @@
2
"name": "custom-css",
3
"title": "Custom Css",
4
"description": "Add custom css to your world",
5
- "version": "1.1.0",
+ "version": "1.1.1",
6
"minimumCoreVersion": "0.6.0",
7
"compatibleCoreVersion": "0.6.0",
8
"author": "Cody Swendrowski <cody@swendrowski.us>",
settingsForm.js
@@ -95,7 +95,12 @@ export class SettingsForm extends FormApplication {
95
*/
96
get: function (sortable) {
97
var order = Settings.getOrder();
98
- return order ? order.split('|') : [];
+ try {
99
+ return order ? order.split('|') : [];
100
+ }
101
+ catch {
102
+ return [];
103
104
},
105
106
/**
0 commit comments