Change the order of the tags?????????? AGAIN, AGAIN!!!!!
authorTheSaminator <TheSaminator@users.noreply.github.com>
Sun, 20 Feb 2022 23:05:49 +0000 (18:05 -0500)
committerTheSaminator <TheSaminator@users.noreply.github.com>
Sun, 20 Feb 2022 23:05:49 +0000 (18:05 -0500)
src/jvmMain/kotlin/starshipfights/info/html_metadata.kt

index f39be0b8b69075359124b0ac259f3a528d687433..bb41fbcd58c2c355a3612413e20397b64b5655d6 100644 (file)
@@ -17,8 +17,8 @@ data class PageMetadata(
 fun HEAD.metadata(pageMetadata: PageMetadata, url: String) {
        metaOG("og:title", pageMetadata.title)
        metaOG("og:description", pageMetadata.description)
-       metaOG("og:url", url)
+       metaOG("og:image", "https://starshipfights.net/static/images/embed-logo.png")
        metaOG("og:type", "website")
        metaOG("og:site_name", "Starship Fights")
-       metaOG("og:image", "https://starshipfights.net/static/images/embed-logo.png")
+       metaOG("og:url", url)
 }