Removed the special detection for facebook and app.net since both provide RSS feeds.

This commit is contained in:
Michael Vogel 2015-03-24 23:08:46 +01:00
parent f1c6d6f1ba
commit 25dbf26345
1 changed files with 0 additions and 11 deletions

View File

@ -364,17 +364,6 @@ function probe_url($url, $mode = PROBE_NORMAL) {
$network = NETWORK_TWITTER;
}
if (strpos($url,'www.facebook.com')) {
$connectornetworks = true;
$network = NETWORK_FACEBOOK;
}
if (strpos($url,'alpha.app.net')) {
$appnet = true;
$network = NETWORK_APPNET;
}
// Twitter is deactivated since twitter closed its old API
//$twitter = ((strpos($url,'twitter.com') !== false) ? true : false);
$lastfm = ((strpos($url,'last.fm/user') !== false) ? true : false);