X-Git-Url: https://git.realraum.at/?a=blobdiff_plain;f=r3-netstatus%2Fmain.go;h=8e6610dff2bec6c0a11c4c8ea0ba2c3a8490fd4d;hb=7a1d5c204fd7670740daa7fad05958a1266cb50a;hp=701640470ba4c0eece7782f93833fd2c9b4aaead;hpb=3ee0c1afcffade429a837dea9d5d2d7bd1163af7;p=svn42.git diff --git a/r3-netstatus/main.go b/r3-netstatus/main.go index 7016404..8e6610d 100644 --- a/r3-netstatus/main.go +++ b/r3-netstatus/main.go @@ -46,7 +46,7 @@ func composeMessage(present, locked, shut bool, who string, ts int64) string { IfThenElseStr(present, "Somebody is present!" , "Everybody left."), IfThenElseStr(locked, "locked","unlocked"), IfThenElseStr(shut, "shut","ajar"), - IfThenElseStr(who == "","", " by" + who), + IfThenElseStr(who == "","", " by " + who), time.Unix(ts,0).String()) }