Skip to content

Commit

Permalink
Merge pull request #481 from SCADA-LTS/#478_Improving_the_import_of_v…
Browse files Browse the repository at this point in the history
…iews_AP

#478 Fixed import graphical view
  • Loading branch information
ArkadiuszParafiniuk authored Mar 1, 2018
2 parents 8d266ef + 5b5a4ff commit 68c2f52
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 68c2f52

Please sign in to comment.