Skip to content

Commit

Permalink
removed the DNC notification type check which apparently failed on so…
Browse files Browse the repository at this point in the history
…me systems
  • Loading branch information
rsms committed Jan 28, 2010
1 parent c2d5204 commit a24581e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DPAppDelegate.m
Expand Up @@ -1005,7 +1005,7 @@ -(void)onDirectoryNotification:(NSNotification *)n {
// WARNING: Possible problem: "FNObject 469-101" is a string we have found by trial-and-error
// and is far from official or even documented, thus might differ in future OS versions etc.
// But since there are a _lot_ of directory notifications received, we need this op.
if (obj && [obj isKindOfClass:[NSString class]] && [obj isEqualToString:@"FNObject 469-101"]) {
if (obj && [obj isKindOfClass:[NSString class]]) {
[self checkForScreenshotsAtPath:screenshotLocation];
}
}
Expand Down

0 comments on commit a24581e

Please sign in to comment.