Remove deprecated App::is_mobile/is_tablet - replace with DI::mode()->isMobile()/isTablet()

This commit is contained in:
nupplaPhil 2019-12-16 01:12:07 +01:00
parent 4b6527e273
commit 5060f3c0aa
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
3 changed files with 3 additions and 3 deletions

View file

@ -33,7 +33,7 @@ function show_button(Friendica\App $a, &$b) {
return;
// Disable for mobile because most mobiles have a smiley key for ther own
if ($a->is_mobile || $a->is_tablet)
if (DI::mode()->isMobile() || DI::mode()->isMobile())
return;
/**