mirror of
https://github.com/captbaritone/webamp.git
synced 2026-08-02 23:13:20 +00:00
Fix commit hash handling in dev mode
This commit is contained in:
parent
a1d73c2f34
commit
188b711952
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ function filterBreadcrumbActions(action) {
|
|||
|
||||
Raven.config(sentryDsn, {
|
||||
/* global COMMITHASH */
|
||||
release: COMMITHASH || "DEV"
|
||||
release: typeof COMMITHASH !== "undefined" ? COMMITHASH : "DEV"
|
||||
}).install();
|
||||
|
||||
// Don't prompt user to install Winamp2-js. It's probably not
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue