mirror of https://github.com/voidlizard/hbs2
fixed FHMMGPm8Kh hbs2-create-acb
This commit is contained in:
parent
124ad73b1f
commit
7efa5edbb7
|
@ -1,7 +1,7 @@
|
|||
PEP: pep-03-reference-update
|
||||
|
||||
```
|
||||
$$ (set lang ru)
|
||||
$$$ (set lang ru)
|
||||
```
|
||||
|
||||
|
||||
|
|
|
@ -112,19 +112,19 @@ instance FromStringMaybe (ACB 'NaClAsymm e) where
|
|||
, Just a == defAcb
|
||||
]
|
||||
|
||||
owners = catMaybes
|
||||
owners = L.nub $ catMaybes
|
||||
[ fromStringMay (Text.unpack e)
|
||||
| (ListVal (Key "acb-owner" [SymbolVal a, LitStrVal e]) ) <- parsed
|
||||
, Just a == defAcb
|
||||
]
|
||||
|
||||
readers = catMaybes
|
||||
readers = L.nub $ catMaybes
|
||||
[ fromStringMay (Text.unpack e)
|
||||
| (ListVal (Key "acb-reader" [SymbolVal a, LitStrVal e]) ) <- parsed
|
||||
, Just a == defAcb
|
||||
]
|
||||
|
||||
writers = catMaybes
|
||||
writers = L.nub $ catMaybes
|
||||
[ fromStringMay (Text.unpack e)
|
||||
| (ListVal (Key "acb-writer" [SymbolVal a, LitStrVal e]) ) <- parsed
|
||||
, Just a == defAcb
|
||||
|
|
Loading…
Reference in New Issue