Show URL before username when title is empty #463

This commit is contained in:
J-Jamet
2020-03-07 11:58:47 +01:00
parent 00a2210eea
commit 5473deec95

View File

@@ -247,13 +247,13 @@ class Entry : Node, EntryVersionedInterface<Group> {
"$PMS_TAN_ENTRY $username"
} else {
if (title.isEmpty())
if (username.isEmpty())
if (url.isEmpty())
nodeId.toString()
if (url.isEmpty())
if (username.isEmpty())
nodeId.toString()
else
url
username
else
username
url
else
title
}