Use String instead of Integer

This commit is contained in:
tom79 2017-10-17 18:44:24 +02:00
parent b5a142b46a
commit faf995f0c9
1 changed files with 1 additions and 1 deletions

View File

@ -921,7 +921,7 @@ public class TootActivity extends AppCompatActivity implements OnRetrieveSearcAc
//Clear content
toot_content.setText("");
toot_cw_content.setText("");
toot_space_left.setText(0);
toot_space_left.setText("0");
if( attachments != null) {
for (Attachment attachment : attachments) {
View namebar = findViewById(Integer.parseInt(attachment.getId()));