We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae91ab0 commit 3fe0478Copy full SHA for 3fe0478
src/main/scala/gitbucket/gist/controller/GistController.scala
@@ -49,7 +49,7 @@ trait GistControllerBase extends ControllerBase {
49
case ""|null => 1
50
case s => s.toInt
51
}
52
- val result = getVisibleGists((page - 1) * Limit, Limit, None)
+ val result = getVisibleGists((page - 1) * Limit, Limit, context.loginAccount)
53
val count = countPublicGists()
54
55
val gists: Seq[(Gist, GistInfo)] = result.map { gist =>
0 commit comments