Skip to content

Bug: UriBuilder on Socket #8

@shop350

Description

@shop350

When the query property of the URI is greater than zero then must concatenate the original query

Class: Socket.cs
Line: 80

Actually:

uri.Query.Length == 0 ? "?vsn=2.0.0" : "&vsn=2.0.0"

Must be:

uri.Query.Length == 0 ? "?vsn=2.0.0" : string.Concat(uri.Query, "&vsn=2.0.0")

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions