Compare commits

...

5 Commits

Author SHA1 Message Date
Smaznet 534c6a3c9d
Merge 2dfc3f3ee5 into 6f785fd26b 2024-03-05 20:02:16 +00:00
Andrea Cavalli 6f785fd26b Fix crash 2024-02-16 15:24:05 +01:00
SMAZNet 2dfc3f3ee5
Update docker-entrypoint.sh 2021-08-15 00:31:56 +04:30
SMAZNet 1cb53b2d55
Update docker-entrypoint.sh 2021-07-19 02:29:15 +04:30
SMAZNet cf5e66213a
added stat host env
it would be better to set host because of docker networking its hard to request to localhost
2021-07-19 02:26:47 +04:30
2 changed files with 5 additions and 1 deletions

View File

@ -19,6 +19,11 @@ CUSTOM_ARGS=""
if [ -n "$TELEGRAM_STAT" ]; then
CUSTOM_ARGS="${CUSTOM_ARGS} --http-stat-port=8082"
fi
if [ -n "$TELEGRAM_STAT_HOST" ]; then
CUSTOM_ARGS="${CUSTOM_ARGS} --http-stat-ip-address=$TELEGRAM_STAT_HOST"
fi
if [ -n "$TELEGRAM_STAT_HIDE_SENSIBLE_DATA" ]; then
CUSTOM_ARGS="${CUSTOM_ARGS} --stats-hide-sensible-data"
fi

View File

@ -2827,7 +2827,6 @@ void Client::JsonMessage::store(td::JsonValueScope *scope) const {
case td_api::messageChatSetTheme::ID:
break;
case td_api::messageAnimatedEmoji::ID:
UNREACHABLE();
break;
case td_api::messagePassportDataSent::ID:
break;