nits to improve git backend (#7)

This commit is contained in:
6543
2023-04-16 16:14:12 +02:00
committed by GitHub
parent 31aae8a305
commit 19db4c223b
3 changed files with 7 additions and 5 deletions

View File

@@ -228,7 +228,7 @@ func (gist *Gist) File(revision string, filename string, truncate bool) (*git.Fi
}, err
}
func (gist *Gist) Log(skip string) ([]*git.Commit, error) {
func (gist *Gist) Log(skip int) ([]*git.Commit, error) {
return git.GetLog(gist.User.Username, gist.Uuid, skip)
}