fix prefixing
This commit is contained in:
parent
b3d42283ad
commit
24b76cb8e0
1 changed files with 1 additions and 1 deletions
|
@ -308,7 +308,7 @@ fromRemoteMetaData :: RemoteMetaData -> MetaData
|
|||
fromRemoteMetaData (RemoteMetaData u (MetaData m)) = MetaData $
|
||||
M.mapKeys addprefix m
|
||||
where
|
||||
addprefix (MetaField f) = MetaField $ CI.mk $ (++ prefix) $ CI.original f
|
||||
addprefix (MetaField f) = MetaField $ CI.mk $ (prefix ++) $ CI.original f
|
||||
prefix = remoteMetaDataPrefix u
|
||||
|
||||
{- Avoid putting too many fields in the map; extremely large maps make
|
||||
|
|
Loading…
Reference in a new issue