You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the AutofillParserImpl.kt class within the com.x8bit.bitwarden.data.autofill.parser package, the parseInternal method, specifically the line 97
val uri = traversalDataList.buildUriOrNull( packageName = packageName, )
does not correctly retrieve the URI. If the URI is "http://102.168.5.6:5700", the result for uri is "http://102.168.5.6", and the port number is not correctly obtained.
Expected Result
If the URI is "http://192.168.5.6:5700", the result for uri is "http://192.168.5.6:5700",
Actual Result
If the URI is "http://192.168.5.6:5700", the result for uri is "http://192.168.5.6", no port info
Screenshots or Videos
No response
Additional Context
No response
Build Version
2024.11.3(19432)
What server are you connecting to?
US
Self-host Server Version
No response
Environment Details
No response
Issue Tracking Info
I understand that work is tracked outside of Github. A PR will be linked to this issue should one be opened to address it, but Bitwarden doesn't use fields like "assigned", "milestone", or "project" to track progress.
The text was updated successfully, but these errors were encountered:
Steps To Reproduce
In the
AutofillParserImpl.kt
class within thecom.x8bit.bitwarden.data.autofill.parser
package, theparseInternal
method, specifically the line 97val uri = traversalDataList.buildUriOrNull( packageName = packageName, )
does not correctly retrieve the URI. If the URI is
"http://102.168.5.6:5700"
, the result foruri
is"http://102.168.5.6"
, and the port number is not correctly obtained.Expected Result
If the URI is
"http://192.168.5.6:5700"
, the result foruri
is"http://192.168.5.6:5700"
,Actual Result
If the URI is
"http://192.168.5.6:5700"
, the result foruri
is"http://192.168.5.6"
, no port infoScreenshots or Videos
No response
Additional Context
No response
Build Version
2024.11.3(19432)
What server are you connecting to?
US
Self-host Server Version
No response
Environment Details
No response
Issue Tracking Info
The text was updated successfully, but these errors were encountered: