Change pkginfo in middleware request to a 'let' declaration since it should not be changed by the middleware

This commit is contained in:
Greg Neagle
2025-05-20 13:41:01 -07:00
parent 4e310609f6
commit 8a6902550d
@@ -23,7 +23,7 @@ import Foundation
public struct MunkiMiddlewareRequest {
var url: String
var headers: [String: String]
var pkginfo: PlistDict?
let pkginfo: PlistDict?
}
public protocol MunkiMiddleware {