Use f-droid.org rather than fdroid.org

This commit is contained in:
Daniel Martí 2013-07-18 12:36:55 +02:00
parent d315521c7d
commit 86464608d7
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="fdroid.org" android:path="/app" />
<data android:scheme="http" android:host="f-droid.org" android:path="/app" />
</intent-filter>
<meta-data
android:name="android.support.PARENT_ACTIVITY"

View File

@ -760,7 +760,7 @@ public class AppDetails extends ListActivity {
shareIntent.setType("text/plain");
shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, app.name);
shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "http://fdroid.org/app?id="+app.id);
shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "http://f-droid.org/app?id="+app.id);
startActivity(Intent.createChooser(shareIntent, getString(R.string.menu_share)));
}