Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Show portnumber for ip adresses only
- Loading branch information
Showing
with
4 additions
and
6 deletions.
-
+4
−6
builtin/mainmenu.lua
|
@@ -34,15 +34,13 @@ function menu.render_favorite(spec,render_details) |
|
|
else |
|
|
if spec.address ~= nil then |
|
|
text = text .. spec.address:trim() |
|
|
|
|
|
if spec.port ~= nil then |
|
|
text = text .. ":" .. spec.port |
|
|
end |
|
|
end |
|
|
end |
|
|
|
|
|
if spec.port ~= nil and |
|
|
spec.port ~= 30000 then |
|
|
|
|
|
text = text .. ":" .. spec.port |
|
|
end |
|
|
|
|
|
if not render_details then |
|
|
return text |
|
|
end |
|
|