add payment years to expiration date, not now
This commit is contained in:
+1
-5
@@ -383,11 +383,7 @@ func prolongActivation(deveui string, years int) (string, error) {
|
||||
fmt.Println(t.Unix())
|
||||
|
||||
var t_new time.Time
|
||||
if t.Before(time.Now()) {
|
||||
t_new = time.Now().AddDate(years, 0, 0)
|
||||
} else {
|
||||
t_new = t.AddDate(years, 0, 0)
|
||||
}
|
||||
t_new = t.AddDate(years, 0, 0)
|
||||
active_until_new := t_new.Format(layout)
|
||||
|
||||
// SET object
|
||||
|
||||
Reference in New Issue
Block a user