Buildout for 3.57

This commit is contained in:
James Barnsley
2021-03-18 20:59:36 +13:00
parent cbcc79aa64
commit 03fdaa3d0a
6 changed files with 8 additions and 16 deletions

View File

@ -150293,19 +150293,15 @@ __webpack_require__.r(__webpack_exports__);
var spotifyActions = __webpack_require__(/*! ../../services/spotify/actions */ "./src/js/services/spotify/actions.js"); var spotifyActions = __webpack_require__(/*! ../spotify/actions */ "./src/js/services/spotify/actions.js");
var mopidyActions = __webpack_require__(/*! ../../services/mopidy/actions */ "./src/js/services/mopidy/actions.js"); var mopidyActions = __webpack_require__(/*! ../mopidy/actions */ "./src/js/services/mopidy/actions.js");
function handleException() { function handleException() {
var message = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ''; var message = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var description = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null; var description = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
var show_notification = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; var show_notification = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true;
console.debug({
message: message,
data: data
});
if (!message) { if (!message) {
if (data.message) { if (data.message) {
@ -161454,7 +161450,6 @@ var rootReducer = function rootReducer(state, action) {
var nextState = state; var nextState = state;
if (action.type === 'RESET_STATE') { if (action.type === 'RESET_STATE') {
console.log(action);
var stateKeysToReset = action.stateKeysToReset; var stateKeysToReset = action.stateKeysToReset;
var resetStates = {}; var resetStates = {};
stateKeysToReset.forEach(function (key) { stateKeysToReset.forEach(function (key) {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -106,7 +106,7 @@
// Release details // Release details
// These are automatically injected to built HTML // These are automatically injected to built HTML
var build = "1616051776"; var build = "1616054097";
var version = "3.57.0"; var version = "3.57.0";
// Construct the script tag // Construct the script tag

View File

@ -1,12 +1,10 @@
import { createRange, removeDuplicates } from '../../util/arrays'; import { createRange, removeDuplicates } from '../../util/arrays';
import { uriSource } from '../../util/helpers'; import { uriSource } from '../../util/helpers';
const spotifyActions = require('../../services/spotify/actions'); const spotifyActions = require('../spotify/actions');
const mopidyActions = require('../../services/mopidy/actions'); const mopidyActions = require('../mopidy/actions');
export function handleException(message = '', data = {}, description = null, show_notification = true) { export function handleException(message = '', data = {}, description = null, show_notification = true) {
console.debug({ message, data })
if (!message) { if (!message) {
if (data.message) { if (data.message) {
message = data.message; message = data.message;

View File

@ -216,7 +216,6 @@ const appReducer = combineReducers({
const rootReducer = (state, action) => { const rootReducer = (state, action) => {
let nextState = state; let nextState = state;
if (action.type === 'RESET_STATE') { if (action.type === 'RESET_STATE') {
console.log(action);
const { stateKeysToReset } = action; const { stateKeysToReset } = action;
const resetStates = {}; const resetStates = {};
stateKeysToReset.forEach((key) => { stateKeysToReset.forEach((key) => {