From 58cc71072051818da926a9177b93fcd6792ca80a Mon Sep 17 00:00:00 2001 From: John Beisley Date: Sat, 28 Sep 2013 18:59:03 +0100 Subject: [PATCH] SetURLBase on PresentationURL as well. --- device.go | 1 + 1 file changed, 1 insertion(+) diff --git a/device.go b/device.go index 1176343..0a75fa0 100644 --- a/device.go +++ b/device.go @@ -54,6 +54,7 @@ type Device struct { func (device *Device) SetURLBase(urlBase *url.URL) { device.ManufacturerURL.SetURLBase(urlBase) device.ModelURL.SetURLBase(urlBase) + device.PresentationURL.SetURLBase(urlBase) for _, icon := range device.Icons { icon.SetURLBase(urlBase) }