mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 00:12:21 +08:00
selector: Fix crash before start
This commit is contained in:
parent
4d9f11d5f0
commit
96dab3ba25
|
@ -98,7 +98,11 @@ func (s *Selector) Start() error {
|
|||
}
|
||||
|
||||
func (s *Selector) Now() string {
|
||||
return s.selected.Tag()
|
||||
selected := s.selected
|
||||
if selected == nil {
|
||||
return s.tags[0]
|
||||
}
|
||||
return selected.Tag()
|
||||
}
|
||||
|
||||
func (s *Selector) All() []string {
|
||||
|
|
Loading…
Reference in New Issue
Block a user