fix crash when using quick compose tile
This commit is contained in:
parent
8b00d421ef
commit
eb7b000cc1
1 changed files with 3 additions and 1 deletions
|
@ -34,6 +34,8 @@ public class TuskyTileService extends TileService {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onClick() {
|
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…
Reference in a new issue