mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-26 19:24:42 +01:00
Fix getPwrChat
This commit is contained in:
parent
95204d86b9
commit
2c22ce9d42
@ -826,7 +826,7 @@ trait PeerHandler
|
||||
: PhotoSizeSourceDialogPhotoBig::class;
|
||||
$photoSize = new $photoSize(
|
||||
dialogId: $res['id'],
|
||||
dialogAccessHash: $res['access_hash'],
|
||||
dialogAccessHash: $full['Chat']['access_hash'] ?? $full['User']['access_hash'],
|
||||
);
|
||||
|
||||
$fileId = new FileId(
|
||||
|
@ -65,8 +65,8 @@ class FileIdTest extends MadelineTestCase
|
||||
public function testDownload(string $type, string $fileIdStr, string $uniqueFileIdStr, array $fullInfo): void
|
||||
{
|
||||
self::$MadelineProto->logger("Trying to download $fileIdStr");
|
||||
self::$MadelineProto->downloadToFile($fileIdStr, "/tmp/$fileIdStr");
|
||||
unlink("/tmp/$fileIdStr");
|
||||
self::$MadelineProto->downloadToFile($fileIdStr, sys_get_temp_dir()."/$fileIdStr");
|
||||
unlink(sys_get_temp_dir()."/$fileIdStr");
|
||||
$this->assertTrue(true);
|
||||
}
|
||||
/**
|
||||
|
@ -33,7 +33,7 @@ abstract class MadelineTestCase extends TestCase
|
||||
'testing.madeline',
|
||||
$settings
|
||||
);
|
||||
$unlock = Tools::flock('/tmp/login.flock', LOCK_EX);
|
||||
$unlock = Tools::flock(sys_get_temp_dir().'/login.flock', LOCK_EX);
|
||||
self::$MadelineProto->botLogin(getenv('BOT_TOKEN'));
|
||||
$unlock();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user