diff --git a/src/main/java/com/rappytv/globaltags/wrapper/http/ApiHandler.java b/src/main/java/com/rappytv/globaltags/wrapper/http/ApiHandler.java index 7b1a56c..1c7295b 100644 --- a/src/main/java/com/rappytv/globaltags/wrapper/http/ApiHandler.java +++ b/src/main/java/com/rappytv/globaltags/wrapper/http/ApiHandler.java @@ -589,7 +589,7 @@ public void getNotes(UUID uuid, Consumer>> consumer new ApiRequest<>( api, "GET", - Routes.notes(api.getClientUUID()), + Routes.notes(uuid), emptyBody, NoteSchema[].class ).sendRequestAsync((response) -> { @@ -631,7 +631,7 @@ public void createNote(UUID uuid, String note, Consumer> con new ApiRequest<>( api, "POST", - Routes.notes(api.getClientUUID()), + Routes.notes(uuid), Map.of("note", note), MessageSchema.class ).sendRequestAsync((response) -> { @@ -664,7 +664,7 @@ public void getNote(UUID uuid, String noteId, Consumer> new ApiRequest<>( api, "GET", - Routes.note(api.getClientUUID(), noteId), + Routes.note(uuid, noteId), emptyBody, NoteSchema.class ).sendRequestAsync((response) -> { @@ -707,7 +707,7 @@ public void deleteNote(UUID uuid, String noteId, Consumer> c new ApiRequest<>( api, "DELETE", - Routes.note(api.getClientUUID(), noteId), + Routes.note(uuid, noteId), emptyBody, MessageSchema.class ).sendRequestAsync((response) -> {