@dosgato/dialog 0.0.68 → 0.0.69

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -97,7 +97,7 @@ export class ChooserStore extends Store {
97
97
  }
98
98
  export function cleanUrl(url) {
99
99
  if (url.startsWith('//'))
100
- url = 'https:' + url;
100
+ url = 'http:' + url;
101
101
  if (url.startsWith('/'))
102
102
  return url;
103
103
  try {
@@ -105,7 +105,7 @@ export function cleanUrl(url) {
105
105
  return url;
106
106
  }
107
107
  catch (e) {
108
- const fixed = 'https://' + url;
108
+ const fixed = 'http://' + url;
109
109
  try {
110
110
  const _ = new URL(fixed);
111
111
  return fixed;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dosgato/dialog",
3
3
  "description": "A component library for building forms that edit a JSON document.",
4
- "version": "0.0.68",
4
+ "version": "0.0.69",
5
5
  "scripts": {
6
6
  "prepublishOnly": "svelte-package",
7
7
  "dev": "vite dev --force",