diff --git a/config.xml b/config.xml index 735b167..7158a48 100644 --- a/config.xml +++ b/config.xml @@ -1,5 +1,5 @@ - + Goober Goober, a mobile app for pnut.io Morgan McMillian @@ -84,14 +84,14 @@ + + - - diff --git a/src/pages/stream/stream.ts b/src/pages/stream/stream.ts index d1589be..2246135 100644 --- a/src/pages/stream/stream.ts +++ b/src/pages/stream/stream.ts @@ -406,9 +406,6 @@ export class NewPostModal { parseMentions(mentions) { let mtext = "" - if (this.navParams.data.cc) { - mtext += "\n/"; - } for(var i = 0; i < mentions.length; i++) { let mu = mentions[i].text; if (mu !== this.myUsername) { @@ -416,6 +413,9 @@ export class NewPostModal { } } if (mtext.length > 0) { + if (this.navParams.data.cc) { + mtext = "\n/" + mtext; + } return mtext; } else { return "";