Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziedelth committed Nov 16, 2022
1 parent 88478f1 commit 0d0b003
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/kotlin/fr/ziedelth/entities/Anime.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ data class Anime(
val name: String? = null,
@Column(nullable = false)
val releaseDate: String = Calendar.getInstance().toISO8601(),
@Column(nullable = false)
@Column(nullable = false, columnDefinition = "TEXT")
val image: String? = null,
@Column(nullable = true, columnDefinition = "TEXT")
val description: String? = null,
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/fr/ziedelth/entities/News.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ data class News(
val hash: String? = null,
@Column(nullable = false)
val releaseDate: String = Calendar.getInstance().toISO8601(),
@Column(nullable = false)
@Column(nullable = false, columnDefinition = "TEXT")
val title: String? = null,
@Column(nullable = false, columnDefinition = "TEXT")
val description: String? = null,
Expand Down
1 change: 1 addition & 0 deletions src/main/kotlin/fr/ziedelth/utils/plugins/PluginManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ object PluginManager {
fun reload() {
defaultPluginManager.stopPlugins()
defaultPluginManager.unloadPlugins()
listeners.clear()
defaultPluginManager = DefaultPluginManager(File("plugins").toPath())
loadPlugins()
}
Expand Down

0 comments on commit 0d0b003

Please sign in to comment.