Skip to content

Commit

Permalink
use profile id (#15)
Browse files Browse the repository at this point in the history
* use profile id

* 2024.7.1

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
rohanharikr and github-actions[bot] authored Jul 9, 2024
1 parent 8164555 commit baede1d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
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

0 comments on commit baede1d

Please sign in to comment.