MCPcopy Create free account
hub / github.com/egg82/fetcharr / search

Method search

Lib/src/main/java/me/egg82/arr/radarr/RadarrV3API.java:43–52  ·  view source on GitHub ↗
(int... itemIds)

Source from the content-addressed store, hash-verified

41 }
42
43 @Override
44 public void search(int... itemIds) {
45 CommandResource response = send(new MoviesSearchCommand(itemIds), CommandResource.class);
46 if (response == null) {
47 return;
48 }
49 if (response.id() < 0) {
50 logger.warn("RADARR_{} returned unexpected response for URL {}: {}", this.id, this.baseUrl + "/api/" + version() + "/command", response);
51 }
52 }
53
54 @Override
55 public String toString() {

Callers

nothing calls this directly

Calls 3

idMethod · 0.95
versionMethod · 0.95
sendMethod · 0.65

Tested by

no test coverage detected