Skip to content

Bug: Rhino Converter throws an error when unnamed collections are filtered #3291

@secretlyagoblin

Description

@secretlyagoblin

case Collection c when !c.collectionType.ToLower().Contains("model"):

If the collectionType is null in this case it silently throws and nothing in the collection loads, showing a successful pull.

should be

      case Collection c when ! (c.collectionType?.ToLower().Contains("model") ?? false):

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions