Fix dodgy find/replace

This commit is contained in:
rxdn 2023-07-15 20:38:38 +01:00
parent 99810dd52f
commit 7a809a2a0f
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ func GetTranscriptHandler(ctx *gin.Context) {
}
if !hasPermission {
ctx.JSON(403, utils.ErrorStr("You do not have permission to view this transcriptMetadata"))
ctx.JSON(403, utils.ErrorStr("You do not have permission to view this transcript"))
return
}
}

View File

@ -47,7 +47,7 @@ func GetTranscriptRenderHandler(ctx *gin.Context) {
}
if !hasPermission {
ctx.JSON(403, utils.ErrorStr("You do not have permission to view this transcriptMetadata"))
ctx.JSON(403, utils.ErrorStr("You do not have permission to view this transcript"))
return
}
}