Buildout for 3.57
This commit is contained in:
@ -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() {
|
||||
var message = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
||||
var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
||||
var description = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
|
||||
var show_notification = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true;
|
||||
console.debug({
|
||||
message: message,
|
||||
data: data
|
||||
});
|
||||
|
||||
if (!message) {
|
||||
if (data.message) {
|
||||
@ -161454,7 +161450,6 @@ var rootReducer = function rootReducer(state, action) {
|
||||
var nextState = state;
|
||||
|
||||
if (action.type === 'RESET_STATE') {
|
||||
console.log(action);
|
||||
var stateKeysToReset = action.stateKeysToReset;
|
||||
var resetStates = {};
|
||||
stateKeysToReset.forEach(function (key) {
|
||||
|
||||
File diff suppressed because one or more lines are too long
4
mopidy_iris/static/app.min.js
vendored
4
mopidy_iris/static/app.min.js
vendored
File diff suppressed because one or more lines are too long
@ -106,7 +106,7 @@
|
||||
|
||||
// Release details
|
||||
// These are automatically injected to built HTML
|
||||
var build = "1616051776";
|
||||
var build = "1616054097";
|
||||
var version = "3.57.0";
|
||||
|
||||
// Construct the script tag
|
||||
|
||||
@ -1,12 +1,10 @@
|
||||
|
||||
import { createRange, removeDuplicates } from '../../util/arrays';
|
||||
import { uriSource } from '../../util/helpers';
|
||||
|
||||
const spotifyActions = require('../../services/spotify/actions');
|
||||
const mopidyActions = require('../../services/mopidy/actions');
|
||||
const spotifyActions = require('../spotify/actions');
|
||||
const mopidyActions = require('../mopidy/actions');
|
||||
|
||||
export function handleException(message = '', data = {}, description = null, show_notification = true) {
|
||||
console.debug({ message, data })
|
||||
if (!message) {
|
||||
if (data.message) {
|
||||
message = data.message;
|
||||
|
||||
@ -216,7 +216,6 @@ const appReducer = combineReducers({
|
||||
const rootReducer = (state, action) => {
|
||||
let nextState = state;
|
||||
if (action.type === 'RESET_STATE') {
|
||||
console.log(action);
|
||||
const { stateKeysToReset } = action;
|
||||
const resetStates = {};
|
||||
stateKeysToReset.forEach((key) => {
|
||||
|
||||
Reference in New Issue
Block a user