Compare commits
3 commits
55849a5847
...
c1b4b590b1
Author | SHA1 | Date | |
---|---|---|---|
c1b4b590b1 | |||
d8bbe5ee74 | |||
6f29a8c077 |
3 changed files with 4 additions and 3 deletions
|
@ -14,7 +14,7 @@ RUN apk update && apk add autoconf \
|
||||||
sqlite-static
|
sqlite-static
|
||||||
|
|
||||||
|
|
||||||
ENV LIBRESSL_VERSION v3.8.0
|
ENV LIBRESSL_VERSION v3.8.2
|
||||||
|
|
||||||
# Compile LibreSSL Portable from source
|
# Compile LibreSSL Portable from source
|
||||||
RUN git clone https://github.com/libressl/portable --depth=1 -b ${LIBRESSL_VERSION} libressl && \
|
RUN git clone https://github.com/libressl/portable --depth=1 -b ${LIBRESSL_VERSION} libressl && \
|
||||||
|
|
|
@ -11,5 +11,5 @@ bin = @["nim_censor_bot"]
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
|
||||||
requires "nim >= 2.0.0"
|
requires "nim >= 2.0.0"
|
||||||
requires "telebot >= 2023.08.20"
|
requires "telebot >= 2023.09.25"
|
||||||
requires "norm >= 2.8.1"
|
requires "norm >= 2.8.1"
|
||||||
|
|
|
@ -213,7 +213,8 @@ proc inlineHandler(b: Telebot, u: InlineQuery): Future[bool]{.gcsafe, async.} =
|
||||||
b.username & "?start=" &
|
b.username & "?start=" &
|
||||||
u.query &
|
u.query &
|
||||||
")",
|
")",
|
||||||
parseMode: some("Markdown")).some
|
parseMode: some("Markdown"),
|
||||||
|
disableWebPagePreview: some(true)).some
|
||||||
else:
|
else:
|
||||||
res.title = "Waiting for File Hash"
|
res.title = "Waiting for File Hash"
|
||||||
res.inputMessageContent = InputTextMessageContent(
|
res.inputMessageContent = InputTextMessageContent(
|
||||||
|
|
Loading…
Reference in a new issue