Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
dvgamerr committed Nov 6, 2023
1 parent 6721880 commit bd86cf6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
3 changes: 2 additions & 1 deletion README_TH.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
## Prerequisites
- เข้าสู่ระบบเว็บไซต์ของ mihoyo ด้วยเบราว์เซอร์ Chrome

## หากคุณต้องการความช่วยเหลือ คุณสามารถเข้าร่วม Discord ได้ (อย่าเที่ยวพิมพ์ @everyone แล้ว โวยวายเป็นเด็กๆ อธิบายดีๆ เด๋วมาตอบ)
## หากคุณต้องการความช่วยเหลือ คุณสามารถเข้าร่วม Discord ได้
#### (อย่าเที่ยวพิมพ์ @everyone แล้ว โวยวายเป็นเด็กๆ อธิบายดีๆ เด๋วมาตอบ)

[![Join Us?](https://discordapp.com/api/guilds/475720106471849996/widget.png?style=banner2)](https://discord.gg/QDccF497Mw)
13 changes: 7 additions & 6 deletions act/act.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package act

import (
"fmt"
"log"
"net/http"
"net/url"
Expand Down Expand Up @@ -58,22 +57,24 @@ var IsDebug bool = false
var IsDev bool = false

func init() {
goenv.Load()
err := goenv.Load()
if err != nil {
log.Println(err)
}
IsDev = os.Getenv(DEBUG) != ""
IsDebug = os.Getenv(DEBUG) != "" && os.Getenv(DEBUG) != "production"
}

func (hoyo *Hoyolab) WriteHoyoConfig(configPath string) error {
func (hoyo *Hoyolab) WriteHoyoConfig(configPath string) {
hoyo.Client = nil
raw, err := yaml.Marshal(hoyo)
if err != nil {
return fmt.Errorf("yaml Marshal::%s", err)
log.Fatalf("yaml Marshal::%s", err)
}
err = os.WriteFile(configPath, raw, 0644)
if err != nil {
return fmt.Errorf("yaml Write::%s", err)
log.Fatalf("yaml Write::%s", err)
}
return nil
}

func (hoyo *Hoyolab) ReadHoyoConfig(configPath string) error {
Expand Down
5 changes: 4 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ var logPath string = ""
var logfile *os.File

func init() {
goenv.Load()
err := goenv.Load()
if err != nil {
log.Println(err)
}
IsDev := os.Getenv(act.DEBUG) != ""

execFilename, err := os.Executable()
Expand Down

0 comments on commit bd86cf6

Please sign in to comment.