docstring_tokens
stringlengths
18
16.9k
code_tokens
stringlengths
75
1.81M
html_url
stringlengths
74
116
file_name
stringlengths
3
311
keep keep keep keep replace replace replace replace keep keep keep keep keep
<mask> golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= <mask> golang.org/x/tools v0.0.0-20201007032633-0806396f153e/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= <mask> golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOk...
https://github.com/AdguardTeam/AdGuardHome/commit/04f49933854f315857abd572c0dc45473c2fae0d
internal/tools/go.sum
keep keep keep keep replace replace
<mask> honnef.co/go/tools v0.3.3 h1:oDx7VAwstgpYpb3wv0oxiZlxY+foCpRAwY7Vk6XpAgA= <mask> honnef.co/go/tools v0.3.3/go.mod h1:jzwdWgg7Jdq75wlfblQxO4neNaFFSvgc1tD5Wv8U0Yw= <mask> mvdan.cc/gofumpt v0.4.0 h1:JVf4NN1mIpHogBj7ABpgOyZc65/UUOkKQFkoURsz4MM= <mask> mvdan.cc/gofumpt v0.4.0/go.mod h1:PljLOHDeZqgS8opHRKLzp2It2VB...
https://github.com/AdguardTeam/AdGuardHome/commit/04f49933854f315857abd572c0dc45473c2fae0d
internal/tools/go.sum
keep keep keep add keep keep keep keep keep
<mask> log.Debug("Querylog: msg.Unpack(entry.OrigAnswer): %s: %s", err, string(entry.OrigAnswer)) <mask> } <mask> } <mask> <mask> return jsonEntry <mask> } <mask> <mask> func answerToMap(a *dns.Msg) []map[string]interface{} { <mask> if a == nil || len(a.Answer) == 0 { </s> + new query logs API + "u...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/json.go
keep keep keep keep replace replace replace replace keep keep keep keep keep
<mask> if getDoubleQuotesEnclosedValue(&c.value) { <mask> c.strict = true <mask> } <mask> <mask> if ct == ctClient && l.conf.AnonymizeClientIP { <mask> c.value = l.getClientIP(c.value) <mask> } <mask> <mask> if ct == ctFilteringStatus && !util.ContainsString(filteringStatusValues, c.value) { <mask>...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/qlog_http.go
keep keep keep keep replace replace replace replace keep keep keep keep keep
<mask> p.maxFileScanEntries = 0 <mask> } <mask> <mask> paramNames := map[string]criteriaType{ <mask> "filter_domain": ctDomain, <mask> "filter_client": ctClient, <mask> "filter_question_type": ctQuestionType, <mask> "filter_response_status": ctFilteringStatus, <mask> } <mask>...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/qlog_http.go
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> // search by domain (strict) <mask> params = newSearchParams() <mask> params.searchCriteria = append(params.searchCriteria, searchCriteria{ <mask> criteriaType: ctDomain, <mask> strict: true, <mask> value: "test.example.org", <mask> }) <mask> entries, _ = l.search(params)...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/qlog_test.go
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> // search by domain (not strict) <mask> params = newSearchParams() <mask> params.searchCriteria = append(params.searchCriteria, searchCriteria{ <mask> criteriaType: ctDomain, <mask> strict: false, <mask> value: "example.org", <mask> }) <mask> entries, _ = l.search(params)...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/qlog_test.go
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> // search by client IP (strict) <mask> params = newSearchParams() <mask> params.searchCriteria = append(params.searchCriteria, searchCriteria{ <mask> criteriaType: ctClient, <mask> strict: true, <mask> value: "2.2.2.2", <mask> }) <mask> entries, _ = l.search(params) <mas...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/qlog_test.go
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> // search by client IP (part of) <mask> params = newSearchParams() <mask> params.searchCriteria = append(params.searchCriteria, searchCriteria{ <mask> criteriaType: ctClient, <mask> strict: false, <mask> value: "2.2.2", <mask> }) <mask> entries, _ = l.search(params) <mas...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/qlog_test.go
keep keep keep keep replace replace replace keep keep keep keep keep
<mask> <mask> type criteriaType int <mask> <mask> const ( <mask> ctDomain criteriaType = iota // domain name <mask> ctClient // client IP address <mask> ctQuestionType // question type <mask> ctFilteringStatus // filtering st...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/search_criteria.go
keep keep keep add keep keep keep keep keep
<mask> filteringStatusBlockedParental = "blocked_parental" // blocked by parental control <mask> filteringStatusWhitelisted = "whitelisted" // whitelisted <mask> filteringStatusRewritten = "rewritten" // all kinds of rewrites <mask> filteringStatusSafeSearch ...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/search_criteria.go
keep add keep keep keep keep
<mask> filteringStatusBlockedSafebrowsing, filteringStatusBlockedParental, <mask> filteringStatusWhitelisted, filteringStatusRewritten, filteringStatusSafeSearch, <mask> } <mask> <mask> // searchCriteria - every search request may contain a list of different search criteria <mask> // we use each of them to mat...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/search_criteria.go
keep keep keep keep replace replace replace replace replace replace keep keep keep keep keep
<mask> func (c *searchCriteria) quickMatch(line string) bool { <mask> // note that we do this only for a limited set of criteria <mask> <mask> switch c.criteriaType { <mask> case ctDomain: <mask> return c.quickMatchJSONValue(line, "QH") <mask> case ctClient: <mask> return c.quickMatchJSONValue(line, "I...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/search_criteria.go
keep keep keep keep replace keep keep keep keep keep
<mask> // match - checks if the log entry matches this search criteria <mask> // nolint (gocyclo) <mask> func (c *searchCriteria) match(entry *logEntry) bool { <mask> switch c.criteriaType { <mask> case ctDomain: <mask> if c.strict && entry.QHost == c.value { <mask> return true <mask> } <mask> if !c...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/search_criteria.go
keep keep keep keep replace replace keep keep keep keep keep
<mask> } <mask> if !c.strict && strings.Contains(entry.QHost, c.value) { <mask> return true <mask> } <mask> return false <mask> case ctClient: <mask> if c.strict && entry.IP == c.value { <mask> return true <mask> } <mask> if !c.strict && strings.Contains(entry.IP, c.value) { <mask> re...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/search_criteria.go
keep keep keep keep replace replace replace replace replace replace replace keep keep keep keep keep
<mask> if !c.strict && strings.Contains(entry.IP, c.value) { <mask> return true <mask> } <mask> return false <mask> case ctQuestionType: <mask> if c.strict && entry.QType == c.value { <mask> return true <mask> } <mask> if !c.strict && strings.Contains(entry.QType, c.value) { <mask> retur...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/search_criteria.go
keep add keep keep keep keep keep keep
<mask> case filteringStatusSafeSearch: <mask> return res.IsFiltered && res.Reason == dnsfilter.FilteredSafeSearch <mask> default: <mask> return false <mask> } <mask> } <mask> <mask> return false </s> + new query logs API + "upstream" + filteringStatusProcessed + ctDomainOrClient remove ctQuesti...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/search_criteria.go
keep keep keep keep replace replace replace keep keep keep keep
<mask> return res.IsFiltered && res.Reason == dnsfilter.FilteredSafeSearch <mask> default: <mask> return false <mask> } <mask> <mask> default: <mask> return false <mask> } <mask> <mask> return false <mask> } </s> + new query logs API + "upstream" + filteringStatusProcessed + ctDomainOrClie...
https://github.com/AdguardTeam/AdGuardHome/commit/0500aa9591d1fb52f24182734859c398203d6962
querylog/search_criteria.go
keep keep keep keep replace replace replace replace replace keep keep keep keep keep
<mask> setModalOpened(false); <mask> } <mask> }; <mask> <mask> const blockButton = <button <mask> className={classNames('title--border text-center button-action--arrow-option', { 'bg--danger': !isBlocked })} <mask> onClick={onToggleBloc...
https://github.com/AdguardTeam/AdGuardHome/commit/053bb72a004df5f0eaaef827ee08c78af312fbf8
client/src/components/Logs/Cells/index.js
keep keep keep keep replace replace replace replace keep keep keep keep keep
<mask> .custom-select--logs { <mask> padding: 0.5rem 0.75rem 0.5rem 2rem !important; <mask> } <mask> <mask> .bg--danger { <mask> color: var(--danger) !important; <mask> } <mask> <mask> .form-control--search { <mask> box-shadow: 0 1px 0 #ddd; <mask> padding: 0 2.5rem; <mask> height: 2.2...
https://github.com/AdguardTeam/AdGuardHome/commit/053bb72a004df5f0eaaef827ee08c78af312fbf8
client/src/components/Logs/Logs.css
keep keep add keep keep keep keep keep keep
<mask> height: 1.6rem; <mask> } <mask> <mask> .button-action__container--detailed { <mask> bottom: 1.3rem; <mask> } <mask> <mask> .button-action { <mask> outline: 0 !important; </s> Pull request: 4775 fix query log issue on tablet devices Updates #4775 Squashed commit of the following: commit...
https://github.com/AdguardTeam/AdGuardHome/commit/053bb72a004df5f0eaaef827ee08c78af312fbf8
client/src/components/Logs/Logs.css
keep keep keep keep replace keep keep keep keep keep
<mask> background: transparent; <mask> border: 0; <mask> display: block; <mask> width: 100%; <mask> text-align: left; <mask> color: inherit; <mask> } <mask> <mask> .button-action--arrow-option:disabled { <mask> display: none; </s> Pull request: 4775 fix query log issue on tablet ...
https://github.com/AdguardTeam/AdGuardHome/commit/053bb72a004df5f0eaaef827ee08c78af312fbf8
client/src/components/Logs/Logs.css
keep keep keep add keep keep keep keep
<mask> padding-bottom: 0.5rem; <mask> text-align: center; <mask> font-weight: 700; <mask> color: inherit; <mask> } <mask> <mask> .button-action--arrow-option:disabled { <mask> display: none; </s> Pull request: 4775 fix query log issue on tablet devices Updates #4775 Squashed commit of th...
https://github.com/AdguardTeam/AdGuardHome/commit/053bb72a004df5f0eaaef827ee08c78af312fbf8
client/src/components/Logs/Logs.css
keep keep add keep keep keep keep keep
<mask> display: none; <mask> } <mask> <mask> .tooltip-custom__container .button-action--arrow-option:not(:disabled):hover { <mask> background: var(--gray-f3); <mask> overflow: hidden; <mask> } <mask> </s> Pull request: 4775 fix query log issue on tablet devices Updates #4775 Squashed commit of ...
https://github.com/AdguardTeam/AdGuardHome/commit/053bb72a004df5f0eaaef827ee08c78af312fbf8
client/src/components/Logs/Logs.css
keep keep keep keep replace keep keep keep keep keep
<mask> display: none; <mask> } <mask> <mask> .tooltip-custom__container .button-action--arrow-option:not(:disabled):hover { <mask> cursor: pointer; <mask> background: var(--gray-f3); <mask> overflow: hidden; <mask> } <mask> <mask> .button-action--arrow-option-container { </s> Pull request: ...
https://github.com/AdguardTeam/AdGuardHome/commit/053bb72a004df5f0eaaef827ee08c78af312fbf8
client/src/components/Logs/Logs.css
keep keep keep add
<mask> font-style: italic; <mask> font-weight: normal; <mask> margin-bottom: 1rem; <mask> } </s> Pull request: 4775 fix query log issue on tablet devices Updates #4775 Squashed commit of the following: commit 9ad85d2306b68227e11c7b1dd792e3fe6389939d Merge: 95aa29d6 41f081d8 Author: Ildar Kamalov <ik...
https://github.com/AdguardTeam/AdGuardHome/commit/053bb72a004df5f0eaaef827ee08c78af312fbf8
client/src/components/Logs/Logs.css
keep keep keep keep replace keep keep keep keep keep
<mask> import queryString from 'query-string'; <mask> import classNames from 'classnames'; <mask> import { <mask> BLOCK_ACTIONS, <mask> SMALL_SCREEN_SIZE, <mask> } from '../../helpers/constants'; <mask> import Loading from '../ui/Loading'; <mask> import Filters from './Filters'; <mask> import Disabled ...
https://github.com/AdguardTeam/AdGuardHome/commit/053bb72a004df5f0eaaef827ee08c78af312fbf8
client/src/components/Logs/index.js
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> const search = search_url_param || filter?.search || ''; <mask> const response_status = response_status_url_param || filter?.response_status || ''; <mask> <mask> const [isSmallScreen, setIsSmallScreen] = useState(window.innerWidth < SMALL_SCREEN_SIZE); <mask> const [detailedDataCur...
https://github.com/AdguardTeam/AdGuardHome/commit/053bb72a004df5f0eaaef827ee08c78af312fbf8
client/src/components/Logs/index.js
keep keep keep keep replace keep keep keep keep keep
<mask> setIsLoading(false); <mask> })(); <mask> }, [response_status, search]); <mask> <mask> const mediaQuery = window.matchMedia(`(max-width: ${SMALL_SCREEN_SIZE}px)`); <mask> const mediaQueryHandler = (e) => { <mask> setIsSmallScreen(e.matches); <mask> if (e.ma...
https://github.com/AdguardTeam/AdGuardHome/commit/053bb72a004df5f0eaaef827ee08c78af312fbf8
client/src/components/Logs/index.js
keep keep keep keep replace keep keep keep keep keep
<mask> ...DHCP_FORM_NAMES, <mask> }; <mask> <mask> export const SMALL_SCREEN_SIZE = 767; <mask> export const MEDIUM_SCREEN_SIZE = 1023; <mask> <mask> export const SECONDS_IN_DAY = 60 * 60 * 24; <mask> <mask> export const UINT32_RANGE = { <mask> MIN: 0, </s> Pull request: 4775 fix query log issue o...
https://github.com/AdguardTeam/AdGuardHome/commit/053bb72a004df5f0eaaef827ee08c78af312fbf8
client/src/helpers/constants.js
keep keep keep keep replace keep keep keep keep keep
<mask> className="btn btn-icon btn-outline-primary btn-sm" <mask> title={t('refresh_btn')} <mask> onClick={() => getAllStats()} <mask> > <mask> <svg className="icons"> <mask> <use xlinkHref="#refresh" /> <mask> </svg> <mask> </button>; <ma...
https://github.com/AdguardTeam/AdGuardHome/commit/057804a459c2631494a87133f08e4f8da7d73798
client/src/components/Dashboard/index.js
keep keep keep keep replace keep keep keep keep keep
<mask> url, <mask> }) <mask> } <mask> > <mask> <svg className="icons"> <mask> <use xlinkHref="#edit" /> <mask> </...
https://github.com/AdguardTeam/AdGuardHome/commit/057804a459c2631494a87133f08e4f8da7d73798
client/src/components/Filters/Table.js
keep keep keep keep replace keep keep keep keep keep
<mask> className="btn btn-icon btn-outline-secondary btn-sm" <mask> onClick={() => handleDelete(url)} <mask> title={t('delete_table_action')} <mask> > <mask> <svg className="icons...
https://github.com/AdguardTeam/AdGuardHome/commit/057804a459c2631494a87133f08e4f8da7d73798
client/src/components/Filters/Table.js
keep keep keep keep replace keep keep keep keep keep
<mask> </button> <mask> {content && ( <mask> <button className={buttonArrowClass} disabled={processingRules}> <mask> <IconTooltip <mask> className="h-100" <mask> tooltipClass="button...
https://github.com/AdguardTeam/AdGuardHome/commit/057804a459c2631494a87133f08e4f8da7d73798
client/src/components/Logs/Cells/ClientCell.js
keep keep add keep keep keep keep keep
<mask> max-height: 100% !important; <mask> } <mask> <mask> .cursor--pointer { <mask> cursor: pointer; <mask> } <mask> <mask> .custom-select__arrow--left { </s> 5505 fix icons Updates #5505 Squashed commit of the following: commit 3d66b82808b9c3904bad8bb32f3927172bfdcda6 Author: Ildar Kamalov <ik@a...
https://github.com/AdguardTeam/AdGuardHome/commit/057804a459c2631494a87133f08e4f8da7d73798
client/src/components/Logs/Logs.css
keep keep keep keep replace keep keep keep keep keep
<mask> width: 100%; <mask> height: 100%; <mask> display: flex; <mask> justify-content: center; <mask> align-items: center; <mask> } <mask> <mask> .button-action:active { <mask> background: var(--btn-block-active); <mask> } </s> 5505 fix icons Updates #5505 Squashed commit of the fo...
https://github.com/AdguardTeam/AdGuardHome/commit/057804a459c2631494a87133f08e4f8da7d73798
client/src/components/Logs/Logs.css
keep keep keep keep replace keep keep keep keep keep
<mask> } <mask> disabled={processingUpdating} <mask> title={t('edit_table_action')} <mask> > <mask> <svg className="icons"> <mask> <use xlinkHref=...
https://github.com/AdguardTeam/AdGuardHome/commit/057804a459c2631494a87133f08e4f8da7d73798
client/src/components/Settings/Clients/ClientsTable/ClientsTable.js
keep keep keep keep replace keep keep keep keep keep
<mask> onClick={() => handleDelete({ name: clientName })} <mask> disabled={processingDeleting} <mask> title={t('delete_table_action')} <mask> > <mask> <svg className="icons"> <ma...
https://github.com/AdguardTeam/AdGuardHome/commit/057804a459c2631494a87133f08e4f8da7d73798
client/src/components/Settings/Clients/ClientsTable/ClientsTable.js
keep keep keep keep replace replace replace replace keep keep keep keep keep
<mask> <path <mask> d="m19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1 -2.83 0l-.06-.06a1.65 1.65 0 0 0 -1.82-.33 1.65 1.65 0 0 0 -1 1.51v.17a2 2 0 0 1 -2 2 2 2 0 0 1 -2-2v-.09a1.65 1.65 0 0 0 -1.08-1.51 1.65 1.65 0 0 0 -1.82.33l-.06.06a2 2 0 0 1 -2.83 0 2 2 0 0 1 0-2.8...
https://github.com/AdguardTeam/AdGuardHome/commit/057804a459c2631494a87133f08e4f8da7d73798
client/src/components/ui/Icons.js
keep keep keep keep replace keep keep keep keep keep
<mask> <path d="M60 54.5h8v40h-8zM60 35.5h8v8h-8z" /> <mask> </svg> <mask> </symbol> <mask> <mask> <symbol id="chevron-down" viewBox="0 0 24 24"> <mask> <g fill="none" fillRule="evenodd"> <mask> <path d="M0 0h24v24H0z" fill="#878787" fillOp...
https://github.com/AdguardTeam/AdGuardHome/commit/057804a459c2631494a87133f08e4f8da7d73798
client/src/components/ui/Icons.js
keep keep keep keep replace keep keep keep keep keep
<mask> onClick={onClick} <mask> disabled={processingVersion} <mask> title={t('check_updates_now')} <mask> > <mask> <svg className="icons"> <mask> <use xlinkHref="#refresh" /> <mask> ...
https://github.com/AdguardTeam/AdGuardHome/commit/057804a459c2631494a87133f08e4f8da7d73798
client/src/components/ui/Version.js
keep keep keep keep replace keep keep keep keep keep
<mask> "encryption_server_desc": "In order to use HTTPS, you need yo enter the server name that matches your SSL certificate.", <mask> "encryption_redirect": "Redirect to HTTPS automatically", <mask> "encryption_redirect_desc": "If checked, AdGuard Home will automatically redirect you from HTTP to HTTPS ...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/__locales/en.json
keep keep keep keep replace replace keep keep keep keep keep
<mask> "encryption_certificates": "Certificates", <mask> "encryption_certificates_desc": "In order to use encryption, you need to provide a valid SSL certificates chain for your domain. You can get a free certificate on <0>{{link}}</0> or you can buy it from one of the trusted Certificate Authorities.", <mas...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/__locales/en.json
keep keep keep add keep keep keep keep keep keep
<mask> "encryption_status": "Status", <mask> "encryption_expire": "Expires", <mask> "encryption_key": "Private key", <mask> "encryption_key_input": "Copy/paste your PEM-encoded private key for your cerficate here.", <mask> "topline_expiring_certificate": "Your SSL certificate is about to expire...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/__locales/en.json
keep keep keep add keep keep keep keep
<mask> "encryption_subject": "Subject", <mask> "encryption_issuer": "Issuer", <mask> "encryption_hostnames": "Hostnames", <mask> "topline_expiring_certificate": "Your SSL certificate is about to expire. Update <0>Encryption settings</0>.", <mask> "form_error_port_range": "Enter port value in th...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/__locales/en.json
keep keep keep keep replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace repl...
<mask> dispatch(findActiveDhcpFailure()); <mask> } <mask> } <mask> }; <mask> <mask> export const getTlsStatusRequest = createAction('GET_TLS_STATUS_REQUEST'); <mask> export const getTlsStatusFailure = createAction('GET_TLS_STATUS_FAILURE'); <mask> export const getTlsStatusSuccess = crea...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/actions/index.js
keep keep add keep keep keep keep keep
<mask> // DNS-over-HTTPS and DNS-over-TLS <mask> TLS_STATUS = { path: 'tls/status', method: 'GET' }; <mask> TLS_CONFIG = { path: 'tls/configure', method: 'POST' }; <mask> <mask> getTlsStatus() { <mask> const { path, method } = this.TLS_STATUS; <mask> return this.makeRequest(path,...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/api/Api.js
keep keep keep add keep
<mask> headers: { 'Content-Type': 'application/json' }, <mask> }; <mask> return this.makeRequest(path, method, parameters); <mask> } <mask> } </s> Added validation on change and enable encryption checkbox </s> add TLS_VALIDATE = { path: 'tls/validate', method: 'POST' }; </s> ad...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/api/Api.js
keep keep keep replace keep keep keep keep keep
<mask> import React, { Component, Fragment } from 'react'; <mask> import { HashRouter, Route } from 'react-router-dom'; <mask> import PropTypes from 'prop-types'; <mask> import { Trans, withNamespaces } from 'react-i18next'; <mask> import LoadingBar from 'react-redux-loading-bar'; <mask> <mask> import 'react-ta...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/App/index.js
keep add keep keep keep keep keep
<mask> import Status from '../ui/Status'; <mask> import Topline from '../ui/Topline'; <mask> import i18n from '../../i18n'; <mask> <mask> class App extends Component { <mask> componentDidMount() { <mask> this.props.getDnsStatus(); </s> Added validation on change and enable encryption checkbox </s> ...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/App/index.js
keep keep keep keep replace keep keep keep keep keep
<mask> const updateAvailable = <mask> !dashboard.processingVersions && <mask> dashboard.isCoreRunning && <mask> dashboard.isUpdateAvailable; <mask> const isExpiringCertificate = !encryption.processing && encryption.warning; <mask> <mask> return ( <mas...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/App/index.js
keep keep keep keep replace replace replace replace replace replace keep keep keep keep keep
<mask> <Topline type="info"> <mask> {dashboard.announcement} <a href={dashboard.announcementUrl} target="_blank" rel="noopener noreferrer">Click here</a> for more info. <mask> </Topline> <mask> } <mask> ...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/App/index.js
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> class Header extends Component { <mask> state = { <mask> isMenuOpen: false, <mask> isDropdownOpen: false, <mask> }; <mask> <mask> toggleMenuOpen = () => { <mask> this.setState(prevState => ({ isMenuOpen: !prevState.isMenuOpen })); <mask> }; </s> Added v...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Header/index.js
keep add keep keep keep keep keep
<mask> render() { <mask> const { dashboard } = this.props; <mask> const badgeClass = classnames({ <mask> 'badge dns-status': true, <mask> 'badge-success': dashboard.protectionEnabled, <mask> 'badge-danger': !dashboard.protectionEnabled, <mask> }); ...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Header/index.js
keep keep keep keep replace keep keep keep keep keep
<mask> </div> <mask> </div> <mask> <Menu <mask> location={this.props.location} <mask> isMenuOpen={this.state.isMenuOpen} <mask> toggleMenuOpen={this.toggl...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Header/index.js
add keep keep keep keep keep
<mask> import React, { Fragment } from 'react'; <mask> import PropTypes from 'prop-types'; <mask> import { Field, reduxForm, formValueSelector } from 'redux-form'; <mask> import { Trans, withNamespaces } from 'react-i18next'; <mask> import flow from 'lodash/flow'; <mask> import format from 'date-fns/format'; </s...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep replace keep keep keep keep keep
<mask> import React, { Fragment } from 'react'; <mask> import PropTypes from 'prop-types'; <mask> import { Field, reduxForm } from 'redux-form'; <mask> import { Trans, withNamespaces } from 'react-i18next'; <mask> import flow from 'lodash/flow'; <mask> <mask> import { renderField, renderSelectField, toNumber, p...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep add keep keep keep keep keep keep
<mask> import { Field, reduxForm, formValueSelector } from 'redux-form'; <mask> import { Trans, withNamespaces } from 'react-i18next'; <mask> import flow from 'lodash/flow'; <mask> <mask> import { renderField, renderSelectField, toNumber, port } from '../../../helpers/form'; <mask> import { EMPTY_DATE } from '.....
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep add keep keep keep keep
<mask> import format from 'date-fns/format'; <mask> <mask> import { renderField, renderSelectField, toNumber, port } from '../../../helpers/form'; <mask> import i18n from '../../../i18n'; <mask> <mask> const validate = (values) => { <mask> const errors = {}; </s> Added validation on change and enable encr...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> return errors; <mask> }; <mask> <mask> const Form = (props) => { <mask> const { <mask> t, <mask> handleSubmit, <mask> reset, <mask> invalid, </s> Added validation on change and enable encryption checkbox </s> add handleChange, isEnabled,...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep keep add keep keep keep keep
<mask> let Form = (props) => { <mask> const { <mask> t, <mask> handleSubmit, <mask> reset, <mask> invalid, <mask> submitting, <mask> processing, </s> Added validation on change and enable encryption checkbox </s> remove const Form = (props) => { </s> add let...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep keep keep replace replace keep keep keep keep keep
<mask> reset, <mask> invalid, <mask> submitting, <mask> processing, <mask> statusCert, <mask> statusKey, <mask> } = props; <mask> <mask> return ( <mask> <form onSubmit={handleSubmit}> <mask> <div className="row"> </s> Added validat...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep add keep keep keep keep keep
<mask> return ( <mask> <form onSubmit={handleSubmit}> <mask> <div className="row"> <mask> <div className="col-12"> <mask> <label className="form__label" htmlFor="server_name"> <mask> <Trans>encryption_server</Trans> <mask> ...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep add keep keep keep keep
<mask> className="form-control" <mask> placeholder={t('encryption_server_enter')} <mask> /> <mask> <div className="form__desc"> <mask> <Trans>encryption_server_desc</Trans> <mask> ...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep add keep keep keep keep keep
<mask> component={renderSelectField} <mask> placeholder={t('encryption_redirect')} <mask> /> <mask> <div className="form__desc"> <mask> <Trans>encryption_redirect_desc</Trans> <mask>...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep keep add keep keep keep keep
<mask> className="form-control" <mask> placeholder={t('encryption_https')} <mask> validate={[port]} <mask> normalize={toNumber} <mask> /> <mask> <div clas...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep add keep keep keep keep
<mask> validate={[port]} <mask> normalize={toNumber} <mask> /> <mask> <div className="form__desc"> <mask> <Trans>encryption_dot_desc</Trans> <mask> </div> </...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep add keep keep keep keep keep keep
<mask> type="text" <mask> className="form-control form-control--textarea" <mask> placeholder={t('encryption_certificates_input')} <mask> /> <mask> <div className="form__status"> <mas...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep keep replace keep keep keep keep replace replace replace
<mask> placeholder={t('encryption_certificates_input')} <mask> /> <mask> <div className="form__status"> <mask> {statusCert && <mask> <Fragment> <mask> ...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep keep keep replace replace replace replace replace replace replace replace replace replace keep keep keep keep keep
<mask> {statusCert} <mask> </div> <mask> </Fragment> <mask> } <mask> {/* <div> <mask> <Trans values={{ domains: '*.exa...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep add keep keep keep keep
<mask> type="text" <mask> className="form-control form-control--textarea" <mask> placeholder="Copy/paste your PEM-encoded private key for your cerficate here." <mask> /> <mask> <div c...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep keep keep replace keep keep keep keep replace replace replace keep
<mask> className="form-control form-control--textarea" <mask> placeholder="Copy/paste your PEM-encoded private key for your cerficate here." <mask> /> <mask> <div className="form__status"> <mask> ...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep add keep keep keep keep
<mask> </div> <mask> </div> <mask> </div> <mask> </div> <mask> <mask> <div className="btn-list mt-2"> <mask> <button </s> Added validation on change and enable encryption checkbox </s> remove <div cl...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep replace keep keep keep replace keep
<mask> <mask> <div className="btn-list"> <mask> <button <mask> type="submit" <mask> className="btn btn-success btn-standart" <mask> disabled={invalid || submitting || processing} <mask> > </s> Added validati...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep keep keep replace keep keep keep keep keep
<mask> > <mask> <Trans>save_config</Trans> <mask> </button> <mask> <button <mask> type="submit" <mask> className="btn btn-secondary btn-standart" <mask> disabled={submitting || processi...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep add keep keep keep keep keep
<mask> Form.propTypes = { <mask> handleSubmit: PropTypes.func.isRequired, <mask> reset: PropTypes.func.isRequired, <mask> submitting: PropTypes.bool.isRequired, <mask> invalid: PropTypes.bool.isRequired, <mask> initialValues: PropTypes.object.isRequired, <mask> processing: PropTypes.bool....
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep keep keep replace replace keep keep keep keep keep
<mask> submitting: PropTypes.bool.isRequired, <mask> invalid: PropTypes.bool.isRequired, <mask> initialValues: PropTypes.object.isRequired, <mask> processing: PropTypes.bool.isRequired, <mask> statusCert: PropTypes.string, <mask> statusKey: PropTypes.string, <mask> t: PropTypes.func.i...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep keep add keep keep keep keep
<mask> subject: PropTypes.string, <mask> t: PropTypes.func.isRequired, <mask> }; <mask> <mask> export default flow([ <mask> withNamespaces(), <mask> reduxForm({ <mask> form: 'encryptionForm', </s> Added validation on change and enable encryption checkbox </s> remove statusCert: Pro...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/Form.js
keep keep add keep keep keep keep
<mask> import React, { Component } from 'react'; <mask> import PropTypes from 'prop-types'; <mask> import { withNamespaces } from 'react-i18next'; <mask> <mask> import Form from './Form'; <mask> import Card from '../../ui/Card'; <mask> </s> Added validation on change and enable encryption checkbox </s> remove...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/index.js
keep add keep keep keep keep
<mask> }; <mask> <mask> render() { <mask> const { encryption, t } = this.props; <mask> const { <mask> enabled, </s> Added validation on change and enable encryption checkbox </s> remove processing, processingConfig, status_cert: statusCert,...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/index.js
keep keep keep keep replace replace replace replace replace keep keep keep keep keep
<mask> <mask> render() { <mask> const { encryption, t } = this.props; <mask> const { <mask> processing, <mask> processingConfig, <mask> status_cert: statusCert, <mask> status_key: statusKey, <mask> ...values <mask> } = en...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/index.js
keep keep replace keep replace replace keep keep keep
<mask> > <mask> <Form <mask> initialValues={{ ...values }} <mask> processing={encryption.processingConfig} <mask> statusCert={statusCert} <mask> statusKey={st...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/index.js
keep add keep keep keep keep
<mask> processing={encryption.processingConfig} <mask> onSubmit={this.handleFormSubmit} <mask> /> <mask> </Card> <mask> } <mask> </div> </s> Added validation on change and enable encryp...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/index.js
keep add keep keep keep keep keep
<mask> Encryption.propTypes = { <mask> setTlsConfig: PropTypes.func.isRequired, <mask> encryption: PropTypes.object.isRequired, <mask> t: PropTypes.func.isRequired, <mask> }; <mask> <mask> export default withNamespaces()(Encryption); </s> Added validation on change and enable encryption checkbox </...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/Encryption/index.js
keep add keep keep keep keep keep keep
<mask> encryption={this.props.encryption} <mask> setTlsConfig={this.props.setTlsConfig} <mask> /> <mask> <Dhcp <mask> dhcp={this.props.dhcp} <...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/components/Settings/index.js
keep keep add keep keep keep keep
<mask> getDhcpInterfaces, <mask> setDhcpConfig, <mask> findActiveDhcp, <mask> getTlsStatus, <mask> setTlsConfig, <mask> validateTlsConfig, <mask> } from '../actions/encryption'; </s> Added validation on change and enable encryption checkbox </s> remove } from '../actions'; </s> add ...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/containers/Settings.js
keep keep keep keep replace keep keep keep keep keep
<mask> setDhcpConfig, <mask> findActiveDhcp, <mask> getTlsStatus, <mask> setTlsConfig, <mask> } from '../actions'; <mask> import Settings from '../components/Settings'; <mask> <mask> const mapStateToProps = (state) => { <mask> const { <mask> settings, </s> Added validation on cha...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/containers/Settings.js
keep keep keep add keep keep keep keep keep
<mask> setDhcpConfig, <mask> findActiveDhcp, <mask> getTlsStatus, <mask> setTlsConfig, <mask> }; <mask> <mask> export default connect( <mask> mapStateToProps, <mask> mapDispatchToProps, </s> Added validation on change and enable encryption checkbox </s> add } from '../actions'; import...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/containers/Settings.js
keep keep keep add
<mask> }; <mask> <mask> export const STANDARD_DNS_PORT = 53; <mask> export const STANDARD_WEB_PORT = 80; </s> Added validation on change and enable encryption checkbox </s> remove export const getTlsStatusRequest = createAction('GET_TLS_STATUS_REQUEST'); export const getTlsStatusFailure = createAction('GET_TLS_S...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/helpers/constants.js
keep add keep keep keep keep keep
<mask> import * as actions from '../actions'; <mask> import toasts from './toasts'; <mask> <mask> const settings = handleActions({ <mask> [actions.initSettingsRequest]: state => ({ ...state, processing: true }), <mask> [actions.initSettingsFailure]: state => ({ ...state, processing: false }), <mask> ...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/reducers/index.js
keep keep keep keep replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace replace keep keep keep keep keep
<mask> active: null, <mask> leases: [], <mask> }); <mask> <mask> const encryption = handleActions({ <mask> [actions.getTlsStatusRequest]: state => ({ ...state, processing: true }), <mask> [actions.getTlsStatusFailure]: state => ({ ...state, processing: false }), <mask> [actions.getTlsStatus...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
client/src/reducers/index.js
keep keep keep keep replace keep keep keep keep keep
<mask> <mask> var defaultDNS = []string{"tls://1.1.1.1", "tls://1.0.0.1"} <mask> <mask> type tlsConfigSettings struct { <mask> Enabled bool `yaml:"enaled" json:"enabled"` <mask> ServerName string `yaml:"server_name" json:"server_name,omitempty"` <mask> ForceHTTPS bool `yaml:"force_https" ...
https://github.com/AdguardTeam/AdGuardHome/commit/05cce8b1073dd4c005157177bdc129cba813a12c
config.go
keep add keep keep keep keep keep keep
<mask> // Checks filters updates if necessary <mask> // If force is true, it ignores the filter.LastUpdated field value <mask> func refreshFiltersIfNecessary(force bool) int { <mask> var updateFilters []filter <mask> <mask> config.RLock() <mask> for i := range config.Filters { <mask> f := &config.Filters[...
https://github.com/AdguardTeam/AdGuardHome/commit/0647f3fe8666a38cbdc7a747279513338e49568a
filter.go
keep keep keep replace keep replace replace keep
<mask> // Checks filters updates if necessary <mask> // If force is true, it ignores the filter.LastUpdated field value <mask> func refreshFiltersIfNecessary(force bool) int { <mask> config.Lock() <mask> <mask> // fetch URLs <mask> updateCount := 0 <mask> for i := range config.Filters { </s> * filters: re...
https://github.com/AdguardTeam/AdGuardHome/commit/0647f3fe8666a38cbdc7a747279513338e49568a
filter.go
keep keep replace keep replace keep keep
<mask> updateCount := 0 <mask> for i := range config.Filters { <mask> filter := &config.Filters[i] // otherwise we will be operating on a copy <mask> <mask> if !filter.Enabled { <mask> continue <mask> } </s> * filters: rework update mechanism so that UI doesn't get locked while update is in progress...
https://github.com/AdguardTeam/AdGuardHome/commit/0647f3fe8666a38cbdc7a747279513338e49568a
filter.go
keep keep keep replace keep keep keep replace keep
<mask> continue <mask> } <mask> <mask> if !force && time.Since(filter.LastUpdated) <= updatePeriod { <mask> continue <mask> } <mask> <mask> updated, err := filter.update() <mask> if err != nil { </s> * filters: rework update mechanism so that UI doesn't get locked while update is in progress...
https://github.com/AdguardTeam/AdGuardHome/commit/0647f3fe8666a38cbdc7a747279513338e49568a
filter.go
keep keep keep replace keep keep keep keep replace keep keep keep keep
<mask> <mask> updated, err := filter.update() <mask> if err != nil { <mask> log.Printf("Failed to update filter %s: %s\n", filter.URL, err) <mask> continue <mask> } <mask> if updated { <mask> // Saving it to the filters dir now <mask> err = filter.save() <mask> if err != nil { <mask> ...
https://github.com/AdguardTeam/AdGuardHome/commit/0647f3fe8666a38cbdc7a747279513338e49568a
filter.go
keep keep keep keep replace keep keep keep replace replace keep keep
<mask> if updated { <mask> // Saving it to the filters dir now <mask> err = filter.save() <mask> if err != nil { <mask> log.Printf("Failed to save the updated filter %d: %s", filter.ID, err) <mask> continue <mask> } <mask> <mask> updateCount++ <mask> <mask> } else { <mask> mt...
https://github.com/AdguardTeam/AdGuardHome/commit/0647f3fe8666a38cbdc7a747279513338e49568a
filter.go
keep keep keep keep replace replace keep keep keep keep keep
<mask> updateCount++ <mask> <mask> } else { <mask> mtime := time.Now() <mask> os.Chtimes(filter.Path(), mtime, mtime) <mask> filter.LastUpdated = mtime <mask> } <mask> } <mask> config.Unlock() <mask> <mask> if updateCount > 0 && isRunning() { </s> * filters: rework update mechanism so t...
https://github.com/AdguardTeam/AdGuardHome/commit/0647f3fe8666a38cbdc7a747279513338e49568a
filter.go
keep keep add keep keep keep keep keep keep
<mask> f.checksum = uf.checksum <mask> updateCount++ <mask> } <mask> } <mask> <mask> if updateCount > 0 && isRunning() { <mask> err := reconfigureDNSServer() <mask> if err != nil { <mask> msg := fmt.Sprintf("SHOULD NOT HAPPEN: cannot reconfigure DNS server with the new filters: %s", err) </s...
https://github.com/AdguardTeam/AdGuardHome/commit/0647f3fe8666a38cbdc7a747279513338e49568a
filter.go