(quotes)
| 48 | } |
| 49 | } |
| 50 | function getRandomQuote(quotes) { |
| 51 | if (!quotes || quotes.length === 0) |
| 52 | return '💎 By MEGA-MD'; |
| 53 | return quotes[Math.floor(Math.random() * quotes.length)]; |
| 54 | } |
| 55 | async function updateAutoBio(sock) { |
| 56 | try { |
| 57 | const autoBioSettings = await store.getSetting('global', 'autoBio'); |
no outgoing calls
no test coverage detected