(int... itemIds)
| 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() { |