Add buff.ly unshorten support

This commit is contained in:
Thomas 2020-03-29 16:01:29 +02:00
parent 36f500759a
commit f0cc359d27
3 changed files with 29 additions and 1 deletions

View File

@ -195,6 +195,31 @@
android:mimeType="text/plain" /> android:mimeType="text/plain" />
</intent-filter> </intent-filter>
<!-- buff.ly -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="buff.ly"
android:pathPattern=".*"
android:scheme="https" />
<data
android:host="buff.ly"
android:pathPattern=".*"
android:scheme="http" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="buff.ly"
android:mimeType="text/plain" />
</intent-filter>
<!-- INSTAGRAM URLs --> <!-- INSTAGRAM URLs -->
<!-- instagram.com --> <!-- instagram.com -->
<intent-filter> <intent-filter>

View File

@ -88,7 +88,8 @@ public class MainActivity extends AppCompatActivity {
"tinyurl.com", "tinyurl.com",
"goo.gl", "goo.gl",
"ow.ly", "ow.ly",
"bl.ink" "bl.ink",
"buff.ly"
}; };
private AppInfoAdapter appInfoAdapter; private AppInfoAdapter appInfoAdapter;
private RecyclerView list_apps; private RecyclerView list_apps;

View File

@ -0,0 +1,2 @@
Added:
- Unshorten support for buff.ly