We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07e67f6 commit b25f721Copy full SHA for b25f721
lib/action/utils.ts
@@ -30,7 +30,7 @@ export function craftExtraPhoto(pic: Picture) {
30
const res = utils.paginate(pic.caption, 960, []);
31
32
if (res.end_idx < pic.caption.length) {
33
- caption += `${res.paginated_html}...\n`;
+ caption += `${res.paginated_html}...`;
34
35
extra.reply_markup = {
36
inline_keyboard: [[{
@@ -41,7 +41,7 @@ export function craftExtraPhoto(pic: Picture) {
41
} else {
42
caption += pic.caption;
43
}
44
- caption += `\n${pic.credit}`;
+ caption += `\n\n${pic.credit}`;
45
46
extra.caption = caption;
47
return extra;
0 commit comments