fix: access: remove terminal option.
Some checks failed
Coverage CI / build (push) Has been cancelled
CodeQL / Analyze (go) (push) Has been cancelled
Ubuntu CI / build (push) Has been cancelled

This commit is contained in:
Daniel Ding
2025-05-26 10:24:47 +08:00
parent 24a8e89fa5
commit debba76ff5
2 changed files with 2 additions and 3 deletions

View File

@@ -191,7 +191,7 @@
<div class="point">
<div class="panel-header">
<p>
<span>The point accessed to, and total </span><span>{{ len .Clients }}+{{ len .Points }}</span>.
<span>The point accessed to, and total </span><span>{{ len .Clients }}+{{ len .Access }}</span>.
</p>
</div>
<div class="panel-body">
@@ -221,7 +221,7 @@
<td><span class="{{ .State }}">{{ .State }}</span></td>
</tr>
{{ end }}
{{ range .Points }}
{{ range .Access }}
<tr>
<td>{{ .UUID }}</td>
<td>{{ prettyTime .AliveTime }}</td>

View File

@@ -89,7 +89,6 @@ func (l *Link) Start() error {
args := []string{
"-alias", l.cfg.Connection + "@" + l.cfg.Network,
"-conf", file,
"-terminal", "ww",
}
l.out.Debug("Link.Start %s %v", l.Path(), args)
cmd := exec.Command(l.Path(), args...)