Skip to content

Commit

Permalink
[Fixed] would/because has been appended
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-schukies committed Apr 29, 2016
1 parent cb812b9 commit f52deaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/StomtPopup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -266,11 +266,11 @@ public void OnPostButtonPressed()

if (_screenshotToggle.isOn)
{
_api.CreateStomtWithImage(_like.sortingOrder == 2, _wouldBecauseText.text + " " + _message.text, _screenshot);
_api.CreateStomtWithImage(_like.sortingOrder == 2, _message.text, _screenshot);
}
else
{
_api.CreateStomt(_like.sortingOrder == 2, _wouldBecauseText.text + " " + _message.text);
_api.CreateStomt(_like.sortingOrder == 2, _message.text);
}

Hide();
Expand Down

0 comments on commit f52deaa

Please sign in to comment.