Skip to content

Commit

Permalink
Fix UpdateInBackground missing from ErrorThrowingAction
Browse files Browse the repository at this point in the history
  • Loading branch information
WarningImHack3r committed Apr 9, 2024
1 parent 79c5af0 commit 708106e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

## [Unreleased]

- Fix missing crash fix for newer versions (2024.1+) (#88)

## [2.1.4] - 2024-03-15

### Changed
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = com.github.warningimhack3r.npmupdatedependencies
pluginName = npm-update-dependencies
pluginRepositoryUrl = https://github.com/WarningImHack3r/npm-update-dependencies
# SemVer format -> https://semver.org
pluginVersion = 2.1.4
pluginVersion = 2.1.5

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 221
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.github.warningimhack3r.npmupdatedependencies.errorsubmitter

import com.intellij.openapi.actionSystem.AnActionEvent
import com.intellij.openapi.actionSystem.UpdateInBackground
import com.intellij.openapi.diagnostic.logger
import com.intellij.openapi.project.DumbAwareAction

Expand All @@ -13,7 +14,7 @@ import com.intellij.openapi.project.DumbAwareAction
* #com.github.warningimhack3r.npmupdatedependencies.errorreport.ErrorThrowingAction
* ```
*/
class ErrorThrowingAction : DumbAwareAction() {
class ErrorThrowingAction : DumbAwareAction(), UpdateInBackground {
companion object {
private val LOG = logger<ErrorThrowingAction>()
}
Expand Down

0 comments on commit 708106e

Please sign in to comment.