Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

114
Vistas
Make fetched messages case insensitive Discord.js

As some of you maybe remember I tried to write a command which checks a channel if a specific key word exists in its messages. The most crucial part of this code is here:

banlist.messages.fetch({limit : 30}).then(messages => {
            let positive = messages.some(msgs => msgs.content.includes(check))
            if(positive === false) {
               ...
            }
            else{
               ...
            }

Unfortunately the problem arose really quick that this check for the key word is case sensitive. Is there any way to make it case insensitive? I know of the .toLowerCase() but that only works for commands and I dont recall it working for fetched messages. Looking forward to your help :)

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

.toLowerCase() is a string method, it will work for any string.

Lowercase both strings being compared to level them.

let positive = messages
   .some(msgs => msgs.content.toLowerCase().includes(check.toLowerCase()))
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda