Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

113
Views
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 answers
Answer question

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!