[ipp] Update cups4j and dependencies (#12443)

Updates cups4j to 0.7.8 and syncs the cups4j dependencies.

Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
Wouter Born
2022-03-13 11:05:58 +01:00
committed by GitHub
parent 480cddbf2c
commit 03e626018d
2 changed files with 11 additions and 5 deletions

View File

@@ -82,7 +82,7 @@ public class IppPrinterHandler extends BaseThingHandler implements DiscoveryList
} else if (obj instanceof String) {
url = new URL((String) obj);
}
printer = new CupsPrinter(url, name, false);
printer = new CupsPrinter(null, url, name);
} catch (MalformedURLException e) {
logger.error("malformed url {}, printer thing creation failed", config.get(PRINTER_PARAMETER_URL));
}