fix: use the correct default URL

This commit is contained in:
Johannes Frohnmeyer 2024-05-13 16:01:05 +02:00
parent a62ebb30c2
commit a31a27595d
Signed by: Johannes
GPG Key ID: E76429612C2929F4

View File

@ -6,6 +6,6 @@ import com.intellij.openapi.components.*
@State(name = "S-DOM", storages = [Storage("s-dom.xml")]) @State(name = "S-DOM", storages = [Storage("s-dom.xml")])
class SDSettings : SimplePersistentStateComponent<SDSettings.SDState>(SDState()) { class SDSettings : SimplePersistentStateComponent<SDSettings.SDState>(SDState()) {
class SDState : BaseState() { class SDState : BaseState() {
var url by string("https://domjudge.iti.kit.edu/main/api") var url by string("https://domjudge.iti.kit.edu/main/api/v4")
} }
} }