This commit is contained in:
Lucio Lelii 2018-11-20 13:10:45 +00:00
parent 02c93de094
commit 6b4790e3b5
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ public class Item {
public String getOwner() {
if (owner!=null) return owner;
else if (ownerNode!=null) ownerNode.getUserName();
else if (ownerNode!=null) return ownerNode.getUserName();
return null;
}