File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -241,23 +241,23 @@ function updateFtlInfo() {
241241 $ ( "#num_lists" ) . text ( intl . format ( database . lists ) ) ;
242242 $ ( "#num_gravity" ) . text ( intl . format ( database . gravity ) ) ;
243243 $ ( "#num_allowed" )
244- . text ( intl . format ( database . domains . allowed + database . regex . allowed ) )
244+ . text ( intl . format ( database . domains . allowed . enabled + database . regex . allowed . enabled ) )
245245 . attr (
246246 "title" ,
247247 "Allowed: " +
248- intl . format ( database . domains . allowed ) +
248+ intl . format ( database . domains . allowed . enabled ) +
249249 " exact domains and " +
250- intl . format ( database . regex . allowed ) +
250+ intl . format ( database . regex . allowed . enabled ) +
251251 " regex filters are enabled"
252252 ) ;
253253 $ ( "#num_denied" )
254- . text ( intl . format ( database . domains . denied + database . regex . denied ) )
254+ . text ( intl . format ( database . domains . denied . enabled + database . regex . denied . enabled ) )
255255 . attr (
256256 "title" ,
257257 "Denied: " +
258- intl . format ( database . domains . denied ) +
258+ intl . format ( database . domains . denied . enabled ) +
259259 " exact domains and " +
260- intl . format ( database . regex . denied ) +
260+ intl . format ( database . regex . denied . enabled ) +
261261 " regex filters are enabled"
262262 ) ;
263263 updateQueryFrequency ( intl , ftl . query_frequency ) ;
You can’t perform that action at this time.
0 commit comments