mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-11-04 01:51:04 +01:00 
			
		
		
		
	Merge pull request #40 from cmars/upstream-fix-nodes-nil-lastseen
Fix nil dereference in nodes list command.
This commit is contained in:
		
						commit
						73186eeb2f
					
				@ -4,6 +4,7 @@ import (
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"log"
 | 
			
		||||
	"strings"
 | 
			
		||||
	"time"
 | 
			
		||||
 | 
			
		||||
	"github.com/spf13/cobra"
 | 
			
		||||
)
 | 
			
		||||
@ -71,7 +72,11 @@ var ListNodesCmd = &cobra.Command{
 | 
			
		||||
			if m.AuthKey != nil && m.AuthKey.Ephemeral {
 | 
			
		||||
				ephemeral = true
 | 
			
		||||
			}
 | 
			
		||||
			fmt.Printf("%s\t%s\t%t\n", m.Name, m.LastSeen.Format("2006-01-02 15:04:05"), ephemeral)
 | 
			
		||||
			var lastSeen time.Time
 | 
			
		||||
			if m.LastSeen != nil {
 | 
			
		||||
				lastSeen = *m.LastSeen
 | 
			
		||||
			}
 | 
			
		||||
			fmt.Printf("%s\t%s\t%t\n", m.Name, lastSeen.Format("2006-01-02 15:04:05"), ephemeral)
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
	},
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user