Compare commits
No commits in common. "2bb0b0db3a31f21159c32769427d3efbb55870ef" and "34963ddca269b674775f70fb538f4e0bec556b6e" have entirely different histories.
2bb0b0db3a
...
34963ddca2
3 changed files with 2 additions and 11 deletions
|
|
@ -1,9 +1,3 @@
|
|||
## 0.1.0a15 (2025-03-19)
|
||||
|
||||
### Fix
|
||||
|
||||
- support item without username
|
||||
|
||||
## 0.1.0a14 (2025-03-19)
|
||||
|
||||
### Feat
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail.user_data_bitwarden"
|
||||
version = "0.1.0a15"
|
||||
version = "0.1.0a14"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "Rougail user_data Bitwarden"
|
||||
|
|
|
|||
|
|
@ -125,10 +125,7 @@ class RougailUserDataBitwarden:
|
|||
for item in items:
|
||||
#if item.count('@') != 1:
|
||||
# continue
|
||||
if "@" in item:
|
||||
keys.append(item.split('@', 1)[-1])
|
||||
else:
|
||||
keys.append(item.rsplit('/', 1)[-1])
|
||||
keys.append(item.split('@', 1)[-1])
|
||||
if not allow_multiple:
|
||||
if not items:
|
||||
return []
|
||||
|
|
|
|||
Loading…
Reference in a new issue