Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9a0b0443d4 | ||
| 1726b21d1d | |||
|
|
207fd26f50 | ||
|
|
aa357725e8 |
@@ -2,7 +2,7 @@
|
|||||||
# Torsearch #
|
# Torsearch #
|
||||||
###################
|
###################
|
||||||
# The version of Torsearch to run. Docker will this tag.
|
# The version of Torsearch to run. Docker will this tag.
|
||||||
TAG=0.38.0
|
TAG=latest
|
||||||
|
|
||||||
# The port for which the web server (app container) will
|
# The port for which the web server (app container) will
|
||||||
# serve the application on the host.
|
# serve the application on the host.
|
||||||
|
|||||||
@@ -99,6 +99,7 @@ readonly class DownloadMediaHandler implements HandlerInterface
|
|||||||
|
|
||||||
$badFileLocations = [
|
$badFileLocations = [
|
||||||
'https://torrentio.strem.fun/videos/failed_infringement_v2.mp4' => 'Removed for Copyright Infringement.',
|
'https://torrentio.strem.fun/videos/failed_infringement_v2.mp4' => 'Removed for Copyright Infringement.',
|
||||||
|
'https://torrentio.strem.fun/videos/downloading_v2.mp4' => 'Your torrent is downloading to your debrid provider.'
|
||||||
];
|
];
|
||||||
|
|
||||||
$headers = get_headers($downloadUrl, true);
|
$headers = get_headers($downloadUrl, true);
|
||||||
|
|||||||
@@ -89,6 +89,7 @@ class DownloadOptionEvaluator
|
|||||||
{
|
{
|
||||||
$badFileLocations = [
|
$badFileLocations = [
|
||||||
'https://torrentio.strem.fun/videos/failed_infringement_v2.mp4' => 'Removed for Copyright Infringement.',
|
'https://torrentio.strem.fun/videos/failed_infringement_v2.mp4' => 'Removed for Copyright Infringement.',
|
||||||
|
'https://torrentio.strem.fun/videos/downloading_v2.mp4' => 'Your torrent is downloading to your debrid provider.'
|
||||||
];
|
];
|
||||||
|
|
||||||
$headers = get_headers($downloadUrl, true);
|
$headers = get_headers($downloadUrl, true);
|
||||||
|
|||||||
@@ -2,15 +2,14 @@
|
|||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
<h2 class="px-4 py-4 text-3xl font-extrabold text-orange-500">500</h2>
|
<h2 class="px-4 py-4 text-3xl font-extrabold text-orange-500">500</h2>
|
||||||
<div class="flex flex-col bg-orange-500/50 p-4 rounded-lg gap-4 w-full md:w-[420px] border-orange-500 border-2 text-gray-50 animate-fade">
|
<div class="flex flex-col bg-orange-500/50 p-4 rounded-lg gap-4 w-full md:w-[540px] border-orange-500 border-2 text-gray-50 animate-fade">
|
||||||
<div class="flex flex-col m-0 text-center">
|
<div class="flex flex-col m-0 text-center">
|
||||||
<h3 class="text-2xl text-bold text-center text-gray-50">Oh crap!</h3>
|
<h3 class="text-2xl text-bold text-center text-gray-50">Oh crap!</h3>
|
||||||
</div>
|
</div>
|
||||||
<p class="mb-2">There are many things I'm capable of, but this ain't one of 'em!</p>
|
<p class="mb-2">There are many things I'm capable of, but this ain't one of 'em!</p>
|
||||||
<pre class="bg-gray-800 text-white p-4 rounded-md overflow-x-auto">
|
<p class="text-sm mb-1">
|
||||||
<code class="language-plaintext">
|
<code>{{ exception.file }}</code>
|
||||||
{{ exception.message }}
|
</p>
|
||||||
</code>
|
<pre class="bg-gray-800 text-white p-4 rounded-md overflow-x-auto"><code class="language-plaintext">{{ exception.message|trim }}</code></pre>
|
||||||
</pre>
|
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
Reference in New Issue
Block a user