mirror of
https://github.com/accelforce/Yuito
synced 2024-12-22 21:28:08 +01:00
fix crash when using quick compose tile
This commit is contained in:
parent
8b00d421ef
commit
eb7b000cc1
@ -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…
Reference in New Issue
Block a user