Skip to content

Commit

Permalink
fix: check for proper patterns for persisted module attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Sep 14, 2024
1 parent 769c058 commit 572c81c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/elixir_sense/providers/plugins/module_store.ex
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ defmodule ElixirSense.Providers.Plugins.ModuleStore do
ElixirSense.Plugin in behaviours or ElixirLS.LanguageServer.Plugin in behaviours or
ElixirSense.Providers.Plugin in behaviours

{:is_elixir_sense_plugin, true} ->
true
{:is_elixir_sense_plugin, value} ->
true in List.wrap(value)

{:is_elixir_ls_plugin, true} ->
true
{:is_elixir_ls_plugin, value} ->
true in List.wrap(value)

_ ->
false
Expand Down

0 comments on commit 572c81c

Please sign in to comment.