fix: adds favicon

This commit is contained in:
2025-08-31 00:20:35 -05:00
parent 9eef567974
commit f3a2f35571
2 changed files with 27 additions and 0 deletions

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1,27 @@
<?php
namespace App\Torrentio\Client;
class TorrentioUrlFactory
{
// stremio://torrentio.strem.fun/providers=yts,eztv,rarbg,1337x,thepiratebay,kickasstorrents,torrentgalaxy,magnetdl,horriblesubs,nyaasi,tokyotosho,anidex|language=croatian,greek,norwegian|qualityfilter=other,scr|limit=100|sizefilter=1000|realdebrid=TEST/manifest.json
public static function create(
?array $providers = null,
?array $language = null,
?array $qualityfilter = null,
?string $debridProvider = null,
?string $limit = null,
?string $sizefilter = null,
?string $debridToken = null,
): string {
$result = "";
if (null !== $providers) {
$result .= "providers=". strtolower(implode(",", $providers));
}
return $result;
}
}