diff options
author | bptato <nincsnevem662@gmail.com> | 2023-12-14 14:33:28 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-12-14 14:33:28 +0100 |
commit | 300944c355ce63efacf8f0a686fff8d6dcbb9e2c (patch) | |
tree | 1f3cef88902a7f31538de3ec71f984bef0843fe2 /src/types | |
parent | ae7cc86baff575bc6fa1d7e803858d54cbf69a8d (diff) | |
download | chawan-300944c355ce63efacf8f0a686fff8d6dcbb9e2c.tar.gz |
config: do not override user-defined urimethodmap
UMM resolution takes the first entry.
Diffstat (limited to 'src/types')
-rw-r--r-- | src/types/urimethodmap.nim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/types/urimethodmap.nim b/src/types/urimethodmap.nim index f9331cfd..48163668 100644 --- a/src/types/urimethodmap.nim +++ b/src/types/urimethodmap.nim @@ -73,3 +73,7 @@ proc parseURIMethodMap*(this: var URIMethodMap, s: string) = proc parseURIMethodMap*(s: string): URIMethodMap = result = URIMethodMap() result.parseURIMethodMap(s) + +proc append*(this: var URIMethodMap, that: URIMethodMap) = + for k, v in that.map: + discard this.map.hasKeyOrPut(k, v) |