diff options
| author | Christian Cleberg <[email protected]> | 2026-07-17 00:03:46 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-07-17 00:03:46 -0500 |
| commit | 685f84ad0a8d2dc7b62125d5d9c3a50b75ae2468 (patch) | |
| tree | 4350edba00977771a7eaa9c254f3e078174c43a7 /DomainDig | |
| parent | 84df8cb6d41377e0d224101dce16e89a2a2dd75a (diff) | |
| parent | f112f894ac00bf7b6397287c26edc1267883612f (diff) | |
| download | domain-dig-685f84ad0a8d2dc7b62125d5d9c3a50b75ae2468.tar.gz domain-dig-685f84ad0a8d2dc7b62125d5d9c3a50b75ae2468.tar.bz2 domain-dig-685f84ad0a8d2dc7b62125d5d9c3a50b75ae2468.zip | |
Merge pull request #3 from zerolabsco/fix/inspect-intent-actor-isolation
Fix Swift 6 actor-isolation warning in InspectDomainIntent
Diffstat (limited to 'DomainDig')
| -rw-r--r-- | DomainDig/DomainDigIntents.swift | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/DomainDig/DomainDigIntents.swift b/DomainDig/DomainDigIntents.swift index fb2e015..44a1dc4 100644 --- a/DomainDig/DomainDigIntents.swift +++ b/DomainDig/DomainDigIntents.swift @@ -28,6 +28,7 @@ struct InspectDomainIntent: AppIntent { Summary("Inspect \(\.$domain)") } + @MainActor func perform() async throws -> some IntentResult & ReturnsValue<String> & ProvidesDialog { let requested = domain.trimmingCharacters(in: .whitespacesAndNewlines) guard !requested.isEmpty else { |
