Skip to content

Commit

Permalink
Updates EnableUnsignedCodeExecutionRequest to match altstoreio/AltStore@
Browse files Browse the repository at this point in the history
  • Loading branch information
rileytestut committed Sep 7, 2021
1 parent 15e5f05 commit e72c8e0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Sources/AltKit/Server/ServerProtocol.swift
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,14 @@ public struct EnableUnsignedCodeExecutionRequest: ServerMessageProtocol
public var identifier = "EnableUnsignedCodeExecutionRequest"

public var udid: String
public var processID: Int32
public var processID: Int32?
public var processName: String?

public init(udid: String, processID: Int32)
public init(udid: String, processID: Int32? = nil, processName: String? = nil)
{
self.udid = udid
self.processID = processID
self.processName = processName
}
}

Expand Down

0 comments on commit e72c8e0

Please sign in to comment.