From 460875beca192edb00539bfea682d34ba2074436 Mon Sep 17 00:00:00 2001 From: Joshua Deare Date: Wed, 3 Jul 2013 11:26:06 -0700 Subject: [PATCH] Added IsActive field to app. --- omaha/omaha.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/omaha/omaha.go b/omaha/omaha.go index 3069206..02de127 100644 --- a/omaha/omaha.go +++ b/omaha/omaha.go @@ -78,11 +78,11 @@ type App struct { Client string `xml:"client,attr,omitempty"` InstallAge string `xml:"installage,attr,omitempty"` Status string `xml:"status,attr,omitempty"` - IsActive bool 'xml:"IsActive,attr"' + IsActive bool `xml:"-"` // update engine extensions - Track string `xml:"track,attr,omitempty"` - FromTrack string `xml:"from_track,attr,omitempty"` + Track string `xml:"track,attr,omitempty"` + FromTrack string `xml:"from_track,attr,omitempty"` } func NewApp(id string) *App {