mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-09 00:23:20 +01:00
14 lines
246 B
Swift
14 lines
246 B
Swift
import UIKit
|
|
|
|
extension UIDevice {
|
|
var isIpad: Bool {
|
|
self.userInterfaceIdiom == .pad
|
|
}
|
|
|
|
var musixmatchAppId: String {
|
|
UIDevice.current.isIpad
|
|
? "mac-ios-ipad-v1.0"
|
|
: "mac-ios-v2.0"
|
|
}
|
|
}
|