bugfix
This commit is contained in:
parent
f5acb49eec
commit
8e9a8e4288
1 changed files with 1 additions and 1 deletions
|
|
@ -76,7 +76,7 @@ public class Folder extends DBBean{
|
||||||
String[] tmp = path.split("/");
|
String[] tmp = path.split("/");
|
||||||
name = tmp[tmp.length-1];
|
name = tmp[tmp.length-1];
|
||||||
}
|
}
|
||||||
String userName = user.getName() != null ? user.getName() : "UNKNOWN";
|
String userName = user != null ? user.getName() : "UNKNOWN";
|
||||||
String tmp = name.replaceAll("\\{NAME\\}", userName);
|
String tmp = name.replaceAll("\\{NAME\\}", userName);
|
||||||
return tmp;
|
return tmp;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue