Make Tusky a share target for video (#857)
This commit is contained in:
parent
a4f9aa3f71
commit
4ded425466
2 changed files with 11 additions and 1 deletions
|
@ -562,7 +562,7 @@ public final class ComposeActivity
|
|||
* instance state will be re-queued. */
|
||||
String type = intent.getType();
|
||||
if (type != null) {
|
||||
if (type.startsWith("image/")) {
|
||||
if (type.startsWith("image/") || type.startsWith("video/")) {
|
||||
List<Uri> uriList = new ArrayList<>();
|
||||
if (intent.getAction() != null) {
|
||||
switch (intent.getAction()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue