Skip to content

Commit

Permalink
== -> ===
Browse files Browse the repository at this point in the history
  • Loading branch information
csmig committed Mar 5, 2024
1 parent ac52503 commit 1b731ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function startFsEventWatcher () {
watcher.on('add', file => {
// chokidar glob argument doesn't work for UNC Windows, so we check file extension here
const extension = file.substring(file.lastIndexOf(".") + 1)
if (extension.toLowerCase() === 'ckl' || extension.toLowerCase() === 'xml' || extension.toLowerCase() == 'cklb') {
if (extension.toLowerCase() === 'ckl' || extension.toLowerCase() === 'xml' || extension.toLowerCase() === 'cklb') {
logger.info({
component: component,
message: 'file system event',
Expand Down

0 comments on commit 1b731ee

Please sign in to comment.