yozm -> sodalive 로 변경

This commit is contained in:
Yu Sung
2023-08-19 21:57:19 +09:00
parent a22a3ebf6c
commit 8e23f65086
13 changed files with 15 additions and 15 deletions

View File

@@ -13,7 +13,7 @@ class ObjectBoxService {
let playbackTrackingBox: Box<PlaybackTracking>
init() {
let databaseName = "yozmlive"
let databaseName = "sodalive"
let appSupport = try! FileManager.default.url(for: .applicationSupportDirectory,
in: .userDomainMask,
appropriateFor: nil,

View File

@@ -58,7 +58,7 @@ struct SodaLiveApp: App {
.onOpenURL { url in
DEBUG_LOG("I have received a URL through a custom scheme! \(url.absoluteString)")
if let scheme = url.scheme {
if scheme == "kr.co.vividnext.yozm" {
if scheme == "kr.co.vividnext.sodalive" {
if let dynamicLink = DynamicLinks.dynamicLinks().dynamicLink(fromCustomSchemeURL: url) {
self.handleIncomingDynamicLink(dynamicLink)
} else {