Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Src/launchdXPC/launchdXPC.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// launchdXPC.c
// launchdXPC.m
// Created by Patrick Wardle
// Ported from code by Jonathan Levin
//
Expand Down Expand Up @@ -238,7 +238,7 @@ int getSubmittedPid(int pid) {

//end key line? (line: "}")
// remove dictionary, as it's no longer needed
if(YES == [obj hasSuffix:@"}"])
if(YES == [obj isEqualToString:@"}"])
{
//remove
[dictionaries removeLastObject];
Expand Down
2 changes: 1 addition & 1 deletion Src/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import Foundation

let version = 0.6
let version = 0.7

// Go through command line arguments and set accordingly
let argManager = ArgManager(suppliedArgs:CommandLine.arguments)
Expand Down