Cache avoidance
This commit is contained in:
parent
81d8cd0868
commit
771bbdd9b9
2
mtproxyd
2
mtproxyd
@ -17,7 +17,7 @@ if (!file_exists('madeline.php')) {
|
||||
}
|
||||
|
||||
if (!$debug) {
|
||||
$mtproxyd = file_get_contents('https://phar.madelineproto.xyz/mtproxyd');
|
||||
$mtproxyd = file_get_contents('https://phar.madelineproto.xyz/mtproxyd?v=new');
|
||||
if ($mtproxyd) {
|
||||
file_put_contents($argv[0], $mtproxyd);
|
||||
}
|
||||
|
2
phar.php
2
phar.php
@ -14,7 +14,7 @@ $file = debug_backtrace(0, 1)[0]['file'];
|
||||
$contents = file_get_contents($file);
|
||||
|
||||
// Should've added the self-update code in mtproxyd right away, but it's too late now
|
||||
if (strpos($contents, 'new \danog\MadelineProto\Server') && in_array($contents, [file_get_contents('https://github.com/danog/MadelineProtoPhar/raw/2270bd9a94d168a5e6731ffd7e61821ea244beff/mtproxyd'), file_get_contents('https://github.com/danog/MadelineProtoPhar/raw/7cabb718ec3ccb79e3c8e3d34f5bccbe3f63b0fd/mtproxyd')]) && ($mtproxyd = file_get_contents('https://phar.madelineproto.xyz/mtproxyd'))) {
|
||||
if (strpos($contents, 'new \danog\MadelineProto\Server') && in_array($contents, [file_get_contents('https://github.com/danog/MadelineProtoPhar/raw/2270bd9a94d168a5e6731ffd7e61821ea244beff/mtproxyd'), file_get_contents('https://github.com/danog/MadelineProtoPhar/raw/7cabb718ec3ccb79e3c8e3d34f5bccbe3f63b0fd/mtproxyd')]) && ($mtproxyd = file_get_contents('https://phar.madelineproto.xyz/mtproxyd?v=new'))) {
|
||||
file_put_contents($file, $mtproxyd);
|
||||
unset($mtproxyd);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user