Skip to content

Commit f05e9dd

Browse files
committed
use tree.json instead of index.json
1 parent 9a16d21 commit f05e9dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/studio/fs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ void tic_fs_enum(tic_fs* fs, fs_list_callback onItem, fs_done_callback onDone, v
423423
if(isPublic(fs))
424424
{
425425
string request;
426-
snprintf(request, sizeof request, "%s/index.json", fs->work + STRLEN(TIC_HOST));
426+
snprintf(request, sizeof request, "%s/tree.json", fs->work + STRLEN(TIC_HOST));
427427

428428
NetDirData netDirData = { onItem, onDone, data };
429429
tic_net_get(fs->net, request, onDirResponse, MOVE(netDirData));

0 commit comments

Comments
 (0)