Skip to content

Commit

Permalink
Fix plugin id
Browse files Browse the repository at this point in the history
  • Loading branch information
xdrop committed Jul 31, 2018
1 parent 7210c40 commit 6c7b4c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/kotlin/me/xdrop/nightowl/NightOwlComponent.kt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class NightOwlComponent : ApplicationComponent {
val LOG = logger<NightOwlComponent>();

private fun getPlugin() = PluginManager.getPlugin(
PluginId.getId("me.xdrop.nightowl")
PluginId.getId("me.xdrop.night-owl")
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class NightOwlNotifyComponent(project: Project) : AbstractProjectComponent(proje

companion object {
private val version = NightOwlSettings.instance.version
private const val channel = "me.xdrop.nightowl"
private const val channel = "me.xdrop.night-owl"

private const val UPDATE_MSG = """
<b>Night Owl</b> successfully updated!<br/>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<idea-plugin>
<id>me.xdrop.nightowl</id>
<id>me.xdrop.night-owl</id>
<name>Night Owl Theme</name>
<vendor email="[email protected]" url="https://xdrop.me">xdrop</vendor>

Expand Down

0 comments on commit 6c7b4c8

Please sign in to comment.