Skip to content

Commit

Permalink
Fix TinyDB.swift due to Swift 6 changes
Browse files Browse the repository at this point in the history
Change-Id: Ib8446742ee18058386c2f50a3cc29b34bedd2897
  • Loading branch information
ewpatton committed Jan 8, 2025
1 parent 06891cd commit 4e69f42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appinventor/components-ios/src/TinyDB.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ open class TinyDB: NonvisibleComponent {

fileprivate var _database: Connection!
fileprivate var _table = Table("TinyDB1")
fileprivate let _key = Expression<String>("_key")
fileprivate let _value = Expression<String>("_value")
fileprivate let _key = SQLite.Expression<String>("_key")
fileprivate let _value = SQLite.Expression<String>("_value")
private var _namespace = "TinyDB1"

public override init(_ parent: ComponentContainer) {
Expand Down

0 comments on commit 4e69f42

Please sign in to comment.