1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-07 00:56:34 +02:00
2
The getIcon function
Eugene Molotov edited this page 2020-12-07 21:10:31 +04:00

The getIcon function returns the URI for an icon, used as favicon in feeds.

If no icon is specified by the bridge, RSS-Bridge will use a default location: static::URI . '/favicon.ico' (i.e. "https://github.com/favicon.ico") which may or may not exist.

	public function getIcon(){
		return static::URI . '/favicon.ico';
	}