mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-03-03 15:46:47 +00:00
fix deeplink
This commit is contained in:
parent
462dedc17d
commit
fb93d0c9ec
2 changed files with 3 additions and 3 deletions
|
|
@ -37,7 +37,6 @@
|
|||
<intent-filter>
|
||||
<action android:name="android.intent.action.SEND" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
<data android:scheme="http" />
|
||||
<data android:scheme="https" />
|
||||
<data android:host="*" />
|
||||
|
|
|
|||
|
|
@ -50,7 +50,8 @@ class MastodonPostCard extends StatelessWidget {
|
|||
Text(
|
||||
substringBy(
|
||||
info.desc!.replaceAll('Attached: 1 image', '').trim(),
|
||||
info.image == null ? 500 : 300),
|
||||
info.image == null ? 500 : 300,
|
||||
),
|
||||
style: const TextStyle(color: Colors.white, fontSize: 14),
|
||||
),
|
||||
if (info.image != null && info.image != 'null')
|
||||
|
|
|
|||
Loading…
Reference in a new issue