Skip to content

Commit

Permalink
Escl: Fix uuid in caps
Browse files Browse the repository at this point in the history
  • Loading branch information
cyanfish committed Dec 4, 2023
1 parent 29b3c57 commit 6e923a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NAPS2.Escl.Server/EsclApiController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ public async Task GetScannerCapabilities()
var doc =
EsclXmlHelper.CreateDocAsString(
new XElement(ScanNs + "ScannerCapabilities",
new XElement(PwgNs + "Version", caps.Version), // TODO: Probably hard code version or something
new XElement(PwgNs + "Version", caps.Version),
new XElement(PwgNs + "MakeAndModel", caps.MakeAndModel),
new XElement(PwgNs + "SerialNumber", caps.SerialNumber),
new XElement(ScanNs + "UUID", "0e468f6d-e5dc-4abe-8e9f-ad08d8546b0c"),
new XElement(ScanNs + "UUID", caps.Uuid),
new XElement(ScanNs + "AdminURI", ""),
new XElement(ScanNs + "IconURI", iconUri),
new XElement(ScanNs + "Naps2Extensions", "Progress"),
Expand Down

0 comments on commit 6e923a4

Please sign in to comment.