Merge branch 'develop' of ssh.gitgud.io:fatchan/jschan into develop

indiachan-spamvector
Thomas Lynch 2 years ago
commit 5232bbf63f
  1. 2
      README.md
  2. 2
      gulp/res/js/forms.js
  3. 2
      migrations/0.4.0.js

@ -22,7 +22,7 @@ Join the IRC: [irc.fatpeople.lol](ircs://irc.fatpeople.lol:6697/general)
- [x] Multi-select moderation actions
- [x] Webring +proxy support (compatible with [lynxchan](https://gitlab.com/alogware/LynxChanAddon-Webring) & [infinity](https://gitlab.com/Tenicu/infinityaddon-webring) versions)
- [x] Manage everything from the web panel
- [x] Detailed accounts perimssions system
- [x] Detailed accounts permissions system
- [x] Works properly with anonymizer networks
## License

@ -146,7 +146,7 @@ class postFormHandler {
}
updateFlagField() {
if (this.customFlagInput) {
if (this.customFlagInput && this.customFlagInput.options.selectedIndex !== -1) {
this.selectedFlagImage.src = this.customFlagInput.options[this.customFlagInput.options.selectedIndex].dataset.src || '';
}
}

@ -199,4 +199,6 @@ module.exports = async(db, redis) => {
await redis.deletePattern('board:*');
console.log('Deleting all sessions from redis (logs all users out)');
await redis.deletePattern('sess:*');
console.log('Deleting users cache');
await redis.deletePattern('users:*');
};

Loading…
Cancel
Save