Skip to content
This repository has been archived by the owner on Jul 4, 2018. It is now read-only.

Commit

Permalink
Some bug fixes around the tweet storms
Browse files Browse the repository at this point in the history
  • Loading branch information
klinker24 authored Apr 20, 2017
1 parent 0a3d6a6 commit b6aa142
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,10 @@ public void onClick(View v) {
.setPositiveButton(R.string.twitlonger, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
doneClick();
boolean close = doneClick();
if (close) {
onBackPressed();
}
}
})
.setNeutralButton(R.string.pwiccer, new DialogInterface.OnClickListener() {
Expand Down Expand Up @@ -1182,7 +1185,6 @@ protected Boolean doInBackground(String... args) {
for (int i = 0; i < noOfTweets; i++) {
status = multiTweets.first.length()!=0?multiTweets.first:"";
status += multiTweets.second.get(i) + "(" + tweetNo + "/" + noOfTweets + ")";
replyText = status.replace("/status/", "");
tweetNo++;
if (useAccOne) {
tweetWithoutImages(twitter);
Expand Down

0 comments on commit b6aa142

Please sign in to comment.