update gitignore

This commit is contained in:
nguyentrungthat 2026-04-28 15:51:41 +07:00
parent 51a2d5a61e
commit c3ac1a81ab
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ async function checkAndNotify(keyword, marketplace = "EBAY_US") {
const message = `========= ${keyword.toUpperCase()} (${marketplace}) ==========\n` +
cheapItems.slice(0, 10).map(item =>
`<b>${item.title}</b>\n<b>$${item.price} ${item.currency || 'USD'}</b>\nhttps://${item.currency === 'USD' ? 'www.ebay.com' : 'www.ebay.com.au'}/itm/${item.legacyItemId}`
`${item.title}\n$${item.price} ${item.currency || 'USD'}\nhttps://${item.currency === 'USD' ? 'www.ebay.com' : 'www.ebay.com.au'}/itm/${item.legacyItemId}`
).join('\n==================================\n') +
'\n==================================';