misc.gimg: fix off by one on footer
This commit is contained in:
parent
d2bbf5c040
commit
90b9a869e4
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ gimg.callback = async function (msg, line) {
|
|||
url: image.url,
|
||||
},
|
||||
footer: {
|
||||
text: `Image ${index}/${images.length}. Rerun to get a different image.`,
|
||||
text: `Image ${Number(index) + 1}/${images.length}. Rerun to get a different image.`,
|
||||
},
|
||||
},
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue