Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Dec 1, 2019. It is now read-only.
This repository was archived by the owner on Dec 1, 2019. It is now read-only.

Bug in DKEntity refresh method #7

@dblapps

Description

@dblapps

Just noticed this, in DKEntity.m, the refresh method is defined as:

  • (BOOL)refresh {
    return [self refresh];
    }

This just calls itself over and over until the app crashes. I think it should be:

  • (BOOL)refresh {
    return [self refresh:nil];
    }

or perhaps:

  • (BOOL)refresh {
    NSError* error = nil;
    return [self refresh:&error];
    }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions