Skip to content

Commit

Permalink
update isLive
Browse files Browse the repository at this point in the history
  • Loading branch information
benlower committed Nov 14, 2024
1 parent d03bb50 commit 38c8148
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let package = Package(
.library(
name: "Ultravox",
targets: ["Ultravox"],
versionString: "0.0.2"
versionString: "0.0.3"
),
],
dependencies: [
Expand Down
2 changes: 1 addition & 1 deletion Sources/Ultravox/Ultravox.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public enum UltravoxSessionStatus {
/// The user can interrupt as needed.
case speaking

func isLive() -> Bool {
public func isLive() -> Bool {
switch self {
case .idle, .listening, .thinking, .speaking:
true
Expand Down

0 comments on commit 38c8148

Please sign in to comment.