Skip to content

Commit 5e7a576

Browse files
authored
Merge pull request #4799 from Cookiezaurs/master
[core] Null check for fetching masking properties.
2 parents 205e596 + b768af6 commit 5e7a576

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

plugins/pluginManager.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -1910,7 +1910,12 @@ var pluginManager = function pluginManager() {
19101910

19111911
this.getMaskingSettings = function(appID) {
19121912
if (appID === 'all') {
1913-
return JSON.parse(JSON.stringify(masking.apps));
1913+
if (masking && masking.apps) {
1914+
return JSON.parse(JSON.stringify(masking.apps));
1915+
}
1916+
else {
1917+
return {};
1918+
}
19141919
}
19151920
else if (masking && masking.apps && masking.apps[appID]) {
19161921
return JSON.parse(JSON.stringify(masking.apps[appID]));

0 commit comments

Comments
 (0)