We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3835fae commit d2eeb41Copy full SHA for d2eeb41
lib/pa_ess/updater.ex
@@ -202,7 +202,9 @@ defmodule PaEss.Updater do
202
<<0::size(trunc(ms / 1000 * @sample_rate) * @sample_bits)>>
203
end
204
205
- @chime :code.priv_dir(:realtime_signs) |> Path.join("chime.pcm") |> File.read!()
+ @chime_path :code.priv_dir(:realtime_signs) |> Path.join("chime.pcm")
206
+ @chime File.read!(@chime_path)
207
+ @external_resource @chime_path
208
defp fetch_audio_file(:chime) do
209
@chime
210
0 commit comments