don't make title a link on android. fixes #1059

This commit is contained in:
Danny Coates 2019-01-08 13:50:47 -08:00
parent 39c1bec91a
commit ffe8045d82
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
2 changed files with 21 additions and 6 deletions

View file

@ -146,6 +146,9 @@ function browserName() {
if (/safari/i.test(navigator.userAgent)) {
return 'safari';
}
if (/send android/i.test(navigator.userAgent)) {
return 'android-app';
}
return 'other';
} catch (e) {
return 'unknown';