Skip to content
This repository has been archived by the owner on Dec 23, 2021. It is now read-only.

Commit

Permalink
fix msconsole being really slow
Browse files Browse the repository at this point in the history
  • Loading branch information
tempor1s committed Aug 25, 2020
1 parent 84c8168 commit bb2b5f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/checkin.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ func CheckinModule(cmdCtx *cobra.Command, args []string) {
fmt.Printf("\nName: %s\nMS Email: %s\n\n", name, email)

// Try to log the user in
resp, err := session.Get(fmt.Sprintf("http://make.sc/attend/%s", args[0]))
resp, err := session.Get(fmt.Sprintf("https://make.sc/attend/%s", args[0]))
if err != nil {
log.Fatal(err)
}

// Log usage of the command :)
http.Post("https://msconsole.dev.benlafferty.me/log", "application/txt", nil)
http.Post("https://msconsole.dev.benl.dev/log", "application/txt", nil)

// Print the new banner message.
bannerMessage := getBannerMessage(resp.String())
Expand Down

0 comments on commit bb2b5f0

Please sign in to comment.