Skip to content

sort start/num check is broken #1

@orph

Description

@orph

0 is False in Python, so passing start=0, num=20 to sort will return all the results.

Line 676:
if start and num
Should be:
if start != None and num != None:

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions