We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f3453d commit 57783d4Copy full SHA for 57783d4
2 files changed
index.js
@@ -60,7 +60,7 @@ function ldnode (argv) {
60
61
// Adding proxy
62
if (ldp.proxy) {
63
- proxy(app, ldp.proxyFilter);
+ proxy(app, ldp.proxy);
64
}
65
66
// Setting up routes
lib/ldp.js
@@ -54,7 +54,6 @@ function LDP(argv) {
54
55
ldp.pathFilter = regexp().start(ldp.mount).toRegExp();
56
ldp.proxy = argv.proxy;
57
- ldp.proxyFilter = regexp().start(ldp.proxy).toRegExp();
58
59
// Cache of usedURIs
ldp.usedURIs = {};
0 commit comments