We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dad4233 commit ad98be9Copy full SHA for ad98be9
Sources/InstanaAgent/Instana.swift
@@ -423,14 +423,14 @@ import Foundation
423
/// - viewInternalCPMetaMap: Dictionary of keys and values of meta details from CROSS PLATFORM agents
424
@objc
425
public static func setViewMetaCPInternal(name: String, viewInternalCPMetaMap: [String: String] = [:]) {
426
- var isAllKeyValid = true
+ var isAllKeysValid = true
427
for key in viewInternalCPMetaMap.keys {
428
if !internalMetaFlutterKeys.contains(key) {
429
- isAllKeyValid = false
+ isAllKeysValid = false
430
break
431
}
432
433
- if isAllKeyValid {
+ if isAllKeysValid {
434
Instana.current?.setViewInternal(name: name, viewInternalCPMetaMap: viewInternalCPMetaMap)
435
436
0 commit comments