Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use profile id #15

Merged
merged 2 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "src",
"private": true,
"version": "2024.7.0",
"version": "2024.7.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
8 changes: 4 additions & 4 deletions src/lib/CreatePublisher.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@
})
}

const appRes = await postApplication(pubRes.id, postAppBody)
const appRes = await postApplication(pubRes.profile.id, postAppBody)
if((serverCanFetchLogo && sendImageUri) || (serverCanFetchDarkLogo && sendDarkImageUri)){
if(serverCanFetchLogo && sendImageUri) {
try {
// const resizedImageBlob = await resizeImage(sessionStorage.image_uri)
const image_uri = await postImage(pubRes.id, appRes.id, sessionStorage.image_uri)
const image_uri = await postImage(pubRes.profile.id, appRes.id, sessionStorage.image_uri)
appRes.image_uri = image_uri
} catch(e) {
console.error(e)
Expand All @@ -105,13 +105,13 @@
if(serverCanFetchDarkLogo && sendDarkImageUri) {
try {
// const resizedImageBlob = await resizeImage(sessionStorage.dark_image_uri)
const image_uri = await postImage(pubRes.id, appRes.id, sessionStorage.dark_image_uri)
const image_uri = await postImage(pubRes.profile.id, appRes.id, sessionStorage.dark_image_uri)
appRes.dark_image_uri = image_uri
} catch(e) {
console.error(e)
}
}
const updateApp = await putApplication(pubRes.id, appRes.id, appRes)
const updateApp = await putApplication(pubRes.profile.id, appRes.id, appRes)
}
client_id = appRes.id
} catch(err){
Expand Down
Loading