File tree 2 files changed +8
-11
lines changed
2 files changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,6 @@ export const load = async ({ depends, fetch }) => {
57
57
avatarUrl : fetch ( `${ base } /api/v2/assistants/${ conv . assistantId } ` )
58
58
. then ( ( res ) => res . json ( ) as Promise < Serialize < Assistant > > )
59
59
. then ( ( assistant ) => {
60
- console . log ( assistant ) ;
61
60
if ( ! assistant . avatar ) {
62
61
return undefined ;
63
62
}
Original file line number Diff line number Diff line change 1
1
import { base } from "$app/paths" ;
2
2
import type { GETConversationResponse } from "$lib/server/api/routes/groups/conversations.js" ;
3
3
import { UrlDependency } from "$lib/types/UrlDependency" ;
4
- import { error } from "@sveltejs/kit" ;
4
+ import { fetchJSON } from "$lib/utils/fetchJSON.js" ;
5
+ import { redirect } from "@sveltejs/kit" ;
5
6
6
7
export const load = async ( { params, depends, fetch } ) => {
7
8
depends ( UrlDependency . Conversation ) ;
8
9
9
- const r = await fetch ( `${ base } /api/v2/conversations/${ params . id } ` ) ;
10
-
11
- if ( ! r . ok ) {
12
- console . log ( { r } ) ;
13
- error ( r . status , "Failed to fetch conversation" ) ;
10
+ try {
11
+ return await fetchJSON < GETConversationResponse > ( `${ base } /api/v2/conversations/${ params . id } ` , {
12
+ fetch,
13
+ } ) ;
14
+ } catch {
15
+ redirect ( 302 , "/" ) ;
14
16
}
15
-
16
- const data = await r . json ( ) ;
17
-
18
- return data as GETConversationResponse ;
19
17
} ;
You can’t perform that action at this time.
0 commit comments