www: updated end point url

This commit is contained in:
Lemmy
2026-02-07 23:14:56 -05:00
parent 22a349560f
commit 6e4a302f31
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -171,7 +171,7 @@ Singleton {
// Query geocoding API to convert location name to coordinates
function geocodeLocation(locationName, callback, errorCallback) {
Logger.d("Location", "Geocoding location name");
var geoUrl = "https://noctalia.dev:7777/geocode?city=" + encodeURIComponent(locationName);
var geoUrl = "https://api.noctalia.dev/geocode?city=" + encodeURIComponent(locationName);
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function () {
if (xhr.readyState === XMLHttpRequest.DONE) {
+1 -1
View File
@@ -142,7 +142,7 @@ Singleton {
Process {
id: supporterProcess
command: ["curl", "-s", "https://noctalia.dev:7777/supporters"]
command: ["curl", "-s", "https://api.noctalia.dev/supporters"]
stdout: StdioCollector {
onStreamFinished: {
+1 -1
View File
@@ -16,7 +16,7 @@ Singleton {
property int totalRamGb: 0
property string instanceId: ""
readonly property string telemetryEndpoint: Quickshell.env("NOCTALIA_TELEMETRY_ENDPOINT") || "https://noctalia.dev:7777/ping"
readonly property string telemetryEndpoint: Quickshell.env("NOCTALIA_TELEMETRY_ENDPOINT") || "https://api.noctalia.dev/ping"
function init() {
if (initialized)
+1 -1
View File
@@ -22,7 +22,7 @@ Singleton {
// URLs
readonly property string discordUrl: "https://discord.noctalia.dev"
readonly property string feedbackUrl: Quickshell.env("NOCTALIA_CHANGELOG_FEEDBACK_URL") || ""
readonly property string upgradeLogBaseUrl: Quickshell.env("NOCTALIA_UPGRADELOG_URL") || "https://noctalia.dev:7777/upgradelog"
readonly property string upgradeLogBaseUrl: Quickshell.env("NOCTALIA_UPGRADELOG_URL") || "https://api.noctalia.dev/upgradelog"
// Changelog properties
property bool initialized: false