Compare commits
No commits in common. "ffd3d0dc8dbaadd002ae1cd06c88498be25bff3c" and "fad14f685e36af3eff03da939e0b0426069b14e5" have entirely different histories.
ffd3d0dc8d
...
fad14f685e
|
@ -40,9 +40,7 @@ export async function getConfig(): Promise<Config> {
|
|||
export async function setConfig(newConfig: Partial<Config>): Promise<void> {
|
||||
const oldConfig = await getConfig();
|
||||
const config: Config = {
|
||||
pausedReason: newConfig.pausedReason === undefined
|
||||
? oldConfig.pausedReason
|
||||
: newConfig.pausedReason,
|
||||
pausedReason: newConfig.pausedReason ?? oldConfig.pausedReason,
|
||||
maxUserJobs: newConfig.maxUserJobs ?? oldConfig.maxUserJobs,
|
||||
maxJobs: newConfig.maxJobs ?? oldConfig.maxJobs,
|
||||
defaultParams: newConfig.defaultParams ?? oldConfig.defaultParams,
|
||||
|
|
|
@ -129,7 +129,7 @@ async function img2img(
|
|||
chat: ctx.message.chat,
|
||||
requestMessage: ctx.message,
|
||||
replyMessage: replyMessage,
|
||||
}, { priority: 0, retryCount: 3, repeatDelayMs: 10_000 });
|
||||
}, { retryCount: 3, repeatDelayMs: 10_000 });
|
||||
|
||||
debug(`Generation (img2img) enqueued for ${formatUserChat(ctx.message)}`);
|
||||
}
|
||||
|
|
|
@ -39,7 +39,7 @@ async function pnginfo(ctx: ErisContext, includeRepliedTo: boolean): Promise<voi
|
|||
const buffer = await fetch(file.getUrl()).then((resp) => resp.arrayBuffer());
|
||||
const info = getPngInfo(buffer);
|
||||
if (!info) {
|
||||
return void await ctx.reply(
|
||||
return await ctx.reply(
|
||||
"No info found in file.",
|
||||
omitUndef({ reply_to_message_id: ctx.message?.message_id }),
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue