mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Vet complains about "should have signature MarshalJSON() ([]byte, error)", replaced with custom name
This commit is contained in:
		@@ -367,10 +367,10 @@ type HookTask struct {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
func (t *HookTask) BeforeUpdate() {
 | 
					func (t *HookTask) BeforeUpdate() {
 | 
				
			||||||
	if t.RequestInfo != nil {
 | 
						if t.RequestInfo != nil {
 | 
				
			||||||
		t.RequestContent = t.MarshalJSON(t.RequestInfo)
 | 
							t.RequestContent = t.SimpleMarshalJSON(t.RequestInfo)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if t.ResponseInfo != nil {
 | 
						if t.ResponseInfo != nil {
 | 
				
			||||||
		t.ResponseContent = t.MarshalJSON(t.ResponseInfo)
 | 
							t.ResponseContent = t.SimpleMarshalJSON(t.ResponseInfo)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -402,7 +402,7 @@ func (t *HookTask) AfterSet(colName string, _ xorm.Cell) {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (t *HookTask) MarshalJSON(v interface{}) string {
 | 
					func (t *HookTask) SimpleMarshalJSON(v interface{}) string {
 | 
				
			||||||
	p, err := json.Marshal(v)
 | 
						p, err := json.Marshal(v)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		log.Error(3, "Marshal [%d]: %v", t.ID, err)
 | 
							log.Error(3, "Marshal [%d]: %v", t.ID, err)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user