mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-07-18 01:49:32 -05:00
Import not working correctly #156
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @quthla on GitHub (Dec 13, 2018).
I imported the data from my previous vault into bitwarden_rs but today I noticed that the entries with custom regex broke. The regex was split into 2 url values for some reason.
According line from backup looks like this:
,,login,server.com,,,^https://server.com/(dasdasdaf|asdasdgasda)/,xyz@xyz.com,verysecretpassword,Type also changed from regex to standard match. It got split exactly at the
|which is also missing the second url value which now is onlyasdasdgasda)@dani-garcia commented on GitHub (Dec 13, 2018):
Does it work correctly when you import the file in the official server? The import files are parsed by the web vault before the data is sent to bitwarden_rs. We just save the data as it is received.
@quthla commented on GitHub (Dec 13, 2018):
Guess it's an upstream bug then if data is received like that. Maybe
|is the separator multiple url values and so it's being split though it shouldn't@dani-garcia commented on GitHub (Dec 17, 2018):
As we said, this is a limit upstream, so I'll close this.