File tree Expand file tree Collapse file tree 4 files changed +312
-312
lines changed Expand file tree Collapse file tree 4 files changed +312
-312
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ To open the reported post on it's site:
5959
6060| 1.0    || 
6161| ---   |---
62+ |1.0.14 |Bugfix: Ignore case on whitelisted tags.
6263|1.0.13 |Fixing "Decorate existing messages" for FireFox
6364|1.0.12 |Reducing the max size of a rendered image.
6465|1.0.11 |Bugfix: ` decorateExistingMessages `  timing.
Original file line number Diff line number Diff line change 44// @description  FIRE adds a button to SmokeDetector reports that allows you to provide feedback & flag, all from chat. 
55// @author       Cerbrus 
66// @attribution  Michiel Dommerholt (https://github.com/Cerbrus) 
7- // @version      1.0.13  
7+ // @version      1.0.14  
88// @updateURL    https://raw.githubusercontent.com/Charcoal-SE/Userscripts/master/fire/fire.meta.js 
99// @downloadURL  https://raw.githubusercontent.com/Charcoal-SE/Userscripts/master/fire/fire.user.js 
1010// @supportURL   https://github.com/Charcoal-SE/Userscripts/issues 
Original file line number Diff line number Diff line change 44// @description  FIRE adds a button to SmokeDetector reports that allows you to provide feedback & flag, all from chat. 
55// @author       Cerbrus 
66// @attribution  Michiel Dommerholt (https://github.com/Cerbrus) 
7- // @version      1.0.13  
7+ // @version      1.0.14  
88// @updateURL    https://raw.githubusercontent.com/Charcoal-SE/Userscripts/master/fire/fire.meta.js 
99// @downloadURL  https://raw.githubusercontent.com/Charcoal-SE/Userscripts/master/fire/fire.user.js 
1010// @supportURL   https://github.com/Charcoal-SE/Userscripts/issues 
11051105    const  reportBody  =  $ ( '<div/>' ) 
11061106      . text ( d . body )  // Escape everything. 
11071107      . html ( )        // Get the escaped HTML, unescape whitelisted tags. 
1108-       . replace ( / & l t ; ( \/ ? ( [ a b p s u ] | [ h b ] r | [ u o ] l | l i | h \d | c o d e | p r e | s t r o n g | e m | i m g ) .* ?) & g t ; / g ,  '<$1>' ) ; 
1108+       . replace ( / & l t ; ( \/ ? ( [ a b p s u ] | [ h b ] r | [ u o ] l | l i | h \d | c o d e | p r e | s t r o n g | e m | i m g ) .* ?) & g t ; / gi ,  '<$1>' ) ; 
11091109
11101110    const  userName  =  `${ d . username }  <span class="fire-user-reputation"></span>` ; 
11111111
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments