Skip to content

Commit

Permalink
#478 Fixed import graphical view
Browse files Browse the repository at this point in the history
  • Loading branch information
ArkadiuszParafiniuk committed Mar 1, 2018
1 parent 8d266ef commit 5b5a4ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/serotonin/mango/view/View.java
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ public void jsonDeserialize(JsonReader reader, JsonObject json)

JsonArray jsonSharers = json.getJsonArray("sharingUsers");
if (jsonSharers != null) {
viewUsers.clear();
viewUsers = new CopyOnWriteArrayList<ShareUser>();

for (JsonValue jv : jsonSharers.getElements()) {
ShareUser shareUser = reader.readPropertyValue(jv,
Expand Down

0 comments on commit 5b5a4ff

Please sign in to comment.