Skip to content
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkgroenen committed Dec 27, 2015
1 parent 72e5d8e commit 07097fe
Show file tree
Hide file tree
Showing 15 changed files with 50 additions and 43 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#Changelog

v1.5.12 (27-12-2015)

- Fix items undefined bug

v1.5.11 (27-12-2015)
-------------------

Expand Down
Binary file removed dist/Mopidy-Mopify-1.5.11.tar.gz
Binary file not shown.
Binary file removed dist/Mopidy-Mopify-1.5.9.tar.gz
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">

<meta name="version" content="1.5.11">
<meta name="version" content="1.5.12">

<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/webfonts/ss-standard.css">

<link href="assets/images/favicon.ico" rel="icon" type="image/x-icon" />


<link rel="stylesheet" type="text/css" href="assets/css/mopidy-mopify-1.5.11.css" />
<link rel="stylesheet" type="text/css" href="assets/css/mopidy-mopify-1.5.12.css" />

<link rel="manifest" href="assets/manifest.json">
</head>
Expand Down Expand Up @@ -54,7 +54,7 @@

<!-- Grunt will handle this part -->

<script type="text/javascript" src="assets/mopidy-mopify-1.5.11.js"></script>
<script type="text/javascript" src="assets/mopidy-mopify-1.5.12.js"></script>

<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
Expand Down
2 changes: 1 addition & 1 deletion mopidy_mopify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

from mopidy import config, ext

__version__ = '1.5.11'
__version__ = '1.5.12'
__ext_name__ = 'mopify'
__verbosemode__ = False

Expand Down
2 changes: 1 addition & 1 deletion mopidy_mopify/static/debug/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">

<meta name="version" content="1.5.11">
<meta name="version" content="1.5.12">

<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/webfonts/ss-standard.css">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ angular.module('mopify.search', [
}).then(function (data) {
// Perform local search and put at beginning of playlist array
var localLists = PlaylistManager.search($scope.query);
if (data.playlists === undefined) {
data.playlists = { items: [] };
}
data.playlists.items = localLists.concat(data.playlists.items);
$scope.results.artists = data.artists;
$scope.results.albums = data.albums;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions mopidy_mopify/static/min/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">

<meta name="version" content="1.5.11">
<meta name="version" content="1.5.12">

<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/webfonts/ss-standard.css">

<link href="assets/images/favicon.ico" rel="icon" type="image/x-icon" />


<link rel="stylesheet" type="text/css" href="assets/css/mopidy-mopify-1.5.11.css" />
<link rel="stylesheet" type="text/css" href="assets/css/mopidy-mopify-1.5.12.css" />

<link rel="manifest" href="assets/manifest.json">
</head>
Expand Down Expand Up @@ -54,7 +54,7 @@

<!-- Grunt will handle this part -->

<script type="text/javascript" src="assets/mopidy-mopify-1.5.11.js"></script>
<script type="text/javascript" src="assets/mopidy-mopify-1.5.12.js"></script>

<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mopidy-mopify",
"author": "Dirk Groenen",
"version": "1.5.11",
"version": "1.5.12",
"description": "Webclient for Mopidy",
"repository": "https://github.com/dirkgroenen/mopidy-mopify",
"licenses": {
Expand Down

0 comments on commit 07097fe

Please sign in to comment.