1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 00:18:31 +00:00

3.5.423. Add option to hide boxart on hover to directory. Add support for new bits badge tiers. Reduce data stored for local chat history cache. Don't hide AutoMod buttons when a message is handled to prevent mis-clicks. Closes #77

This commit is contained in:
SirStendec 2017-01-30 16:36:33 -05:00
parent 8c5732cc5b
commit b84bd1d4a2
11 changed files with 121 additions and 39 deletions

View file

@ -678,8 +678,8 @@ FFZ.prototype._tokenize_bits = function(tokens) {
}
FFZ.prototype.tokenize_chat_line = function(msgObject, prevent_notification, delete_links) {
if ( msgObject.cachedTokens )
FFZ.prototype.tokenize_chat_line = function(msgObject, prevent_notification, delete_links, disable_cache) {
if ( msgObject.cachedTokens && ! disable_cache )
return msgObject.cachedTokens;
var msg = msgObject.message,
@ -858,7 +858,9 @@ FFZ.prototype.tokenize_chat_line = function(msgObject, prevent_notification, del
// Tokenize users last.
tokens = this.tokenize_users(tokens);
msgObject.cachedTokens = tokens;
if ( ! disable_cache )
msgObject.cachedTokens = tokens;
return tokens;
}