Skip to content

Commit e72c8e0

Browse files
committed
Updates EnableUnsignedCodeExecutionRequest to match altstoreio/AltStore@e4b0b15
1 parent 15e5f05 commit e72c8e0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Sources/AltKit/Server/ServerProtocol.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,12 +143,14 @@ public struct EnableUnsignedCodeExecutionRequest: ServerMessageProtocol
143143
public var identifier = "EnableUnsignedCodeExecutionRequest"
144144

145145
public var udid: String
146-
public var processID: Int32
146+
public var processID: Int32?
147+
public var processName: String?
147148

148-
public init(udid: String, processID: Int32)
149+
public init(udid: String, processID: Int32? = nil, processName: String? = nil)
149150
{
150151
self.udid = udid
151152
self.processID = processID
153+
self.processName = processName
152154
}
153155
}
154156

0 commit comments

Comments
 (0)