mirror of
https://github.com/owncast/owncast.git
synced 2025-11-02 11:56:57 +08:00
This commit is contained in:
@ -69,7 +69,7 @@ func SendLive() error {
|
||||
var imageToAttach string
|
||||
previewGif := filepath.Join(config.WebRoot, "preview.gif")
|
||||
thumbnailJpg := filepath.Join(config.WebRoot, "thumbnail.jpg")
|
||||
|
||||
uniquenessString := shortid.MustGenerate()
|
||||
if utils.DoesFileExists(previewGif) {
|
||||
imageToAttach = "preview.gif"
|
||||
} else if utils.DoesFileExists(thumbnailJpg) {
|
||||
@ -77,6 +77,7 @@ func SendLive() error {
|
||||
}
|
||||
if imageToAttach != "" {
|
||||
previewURL.Path = imageToAttach
|
||||
previewURL.RawQuery = "us=" + uniquenessString
|
||||
apmodels.AddImageAttachmentToNote(note, previewURL.String())
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user