Added more default replacements (AMP)
This commit is contained in:
parent
73ddaf2776
commit
3a44361bf7
|
@ -111,12 +111,14 @@ const void init_replacements()
|
||||||
Json::Value &config = configfile.get_json();
|
Json::Value &config = configfile.get_json();
|
||||||
if (config["replace"].isNull())
|
if (config["replace"].isNull())
|
||||||
{
|
{
|
||||||
const std::array<const replace_pair, 5> replace_array =
|
const std::array<const replace_pair, 6> replace_array =
|
||||||
{{
|
{{
|
||||||
{ "[\\?&]utm_[^&]+", "" }, // Google
|
{ "[\\?&]utm_[^&]+", "" }, // Google
|
||||||
{ "[\\?&]wt_?[^&]+", "" }, // Twitter?
|
{ "[\\?&]wt_?[^&]+", "" }, // Twitter?
|
||||||
{ "[\\?&]__twitter_impression=[^&]+", "" }, // Twitter?
|
{ "[\\?&]__twitter_impression=[^&]+", "" }, // Twitter?
|
||||||
{ "//amp\\.", "//" } // AMP
|
{ "//amp\\.", "//" }, // AMP
|
||||||
|
{ "/amp/", "" }, // AMP
|
||||||
|
{ "[\\?&]service=amp", "" } // AMP
|
||||||
}};
|
}};
|
||||||
|
|
||||||
for (const replace_pair &pair : replace_array)
|
for (const replace_pair &pair : replace_array)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user