try android share before navigator.share
This commit is contained in:
parent
03b86cf772
commit
d3438a52ac
1 changed files with 3 additions and 3 deletions
|
@ -250,7 +250,9 @@ module.exports = function(state, emit, archive) {
|
||||||
|
|
||||||
async function share(event) {
|
async function share(event) {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
if (state.capabilities.share) {
|
if (platform() === 'android') {
|
||||||
|
Android.shareUrl(archive.url);
|
||||||
|
} else {
|
||||||
try {
|
try {
|
||||||
await navigator.share({
|
await navigator.share({
|
||||||
title: state.translate('-send-brand'),
|
title: state.translate('-send-brand'),
|
||||||
|
@ -263,8 +265,6 @@ module.exports = function(state, emit, archive) {
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
// ignore
|
// ignore
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
Android.shareUrl(archive.url);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue