summary refs log tree commit diff stats
path: root/bpod
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-03-25 23:57:26 +0530
committerAndinus <andinus@nand.sh>2020-03-25 23:57:26 +0530
commitc55368d4f45cafcc7efd7553fa4cb69360c64d6d (patch)
tree20a7985e136f80a25362d1feb9ee1064467c3356 /bpod
parent57fb2b88ba050e4c376fdbe1d9eca83966e0c4a4 (diff)
downloadcetus-c55368d4f45cafcc7efd7553fa4cb69360c64d6d.tar.gz
Disable caching on random (bpod)
Diffstat (limited to 'bpod')
-rw-r--r--bpod/json.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/bpod/json.go b/bpod/json.go
index 8829f36..3c24bf7 100644
--- a/bpod/json.go
+++ b/bpod/json.go
@@ -26,25 +26,6 @@ type List struct {
 	Photos []BPOD `json:"images"`
 }
 
-// MarshalJson takes res as input and returns body. This remarshaling
-// is required because of a bug. To learn about why this is required,
-// remove this function & then run `cetus set bpod -random`. Put a
-// `fmt.Println(res, body)` somewhere and look at how they differ. res
-// will contain a single entry but body will have all 7 entries which
-// is bad because body is cached to disk to view later. Look at
-// comment in UnmarshalJson func to understand why res has a single
-// entry and body has all when random flag is passed.
-func MarshalJson(res BPOD) (string, error) {
-	out, err := json.Marshal(res)
-	if err != nil {
-		err = fmt.Errorf("%s\n%s",
-			"MarshalJson failed",
-			err.Error())
-	}
-	body := string(out)
-	return body, err
-}
-
 // UnmarshalJson will take body as input & unmarshal it to res,
 func UnmarshalJson(body string) (BPOD, error) {
 	list := List{}