Browse Source

fix crash when using quick compose tile

pull/953/head
Conny Duck 7 years ago
parent
commit
eb7b000cc1
  1. 4
      app/src/main/java/com/keylesspalace/tusky/service/TuskyTileService.java

4
app/src/main/java/com/keylesspalace/tusky/service/TuskyTileService.java

@ -34,6 +34,8 @@ public class TuskyTileService extends TileService {
@Override
public void onClick() {
startActivityAndCollapse(new Intent(this, ComposeActivity.class));
Intent intent = new Intent(this, ComposeActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivityAndCollapse(intent);
}
}

Loading…
Cancel
Save