1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-26 17:44:44 +01:00

Change stopsignal to SIGTERM

This commit is contained in:
Daniil Gentili 2024-07-16 19:11:06 +02:00
parent 3aac336fd3
commit 7b81d81987
2 changed files with 2 additions and 2 deletions

View File

@ -885,7 +885,6 @@ abstract class AbstractMessage extends Update implements SimpleFilters
return $this->getClient()->methodCallAsyncRead(
'channels.readHistory',
[
'peer' => $this->chatId,
'channel' => $this->chatId,
'max_id' => $readAll ? 0 : $this->id,
],
@ -895,7 +894,6 @@ abstract class AbstractMessage extends Update implements SimpleFilters
'messages.readHistory',
[
'peer' => $this->chatId,
'channel' => $this->chatId,
'max_id' => $readAll ? 0 : $this->id,
],
);

View File

@ -25,6 +25,8 @@ ADD ./tests/jit.php /jit.php
RUN php /jit.php && rm /jit.php
STOPSIGNAL SIGTERM
WORKDIR /app
CMD ["php", "/app/bot.php"]