Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
scareything authored Oct 15, 2024
1 parent 2771435 commit 708cf18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/ZitiMfaAuthQuery.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import CZitiPrivate
private static let log = ZitiLog(ZitiMfaAuthQuery.self)

/// query type
public var typeId:String?
public var typeId:UInt32?

/// MFA provider
public var provider:String?
Expand All @@ -45,7 +45,7 @@ import CZitiPrivate
init(_ cAuthQuery:UnsafePointer<ziti_auth_query_mfa>) {
super.init()

typeId = toStr(cAuthQuery.pointee.type_id)
typeId = cAuthQuery.pointee.type_id.rawValue
provider = toStr(cAuthQuery.pointee.provider)
httpMethod = toStr(cAuthQuery.pointee.http_method)
httpUrl = toStr(cAuthQuery.pointee.http_url)
Expand Down

0 comments on commit 708cf18

Please sign in to comment.