diff options
author | Michael Olson <mwolson@gnu.org> | 2007-04-09 01:43:00 +0000 |
---|---|---|
committer | Michael Olson <mwolson@gnu.org> | 2007-04-09 01:43:00 +0000 |
commit | 8652257258a7306505f24360b54284cca6308d3c (patch) | |
tree | fcbe1f4d81102dc704aba5b86f8972d56ebb87ca | |
parent | 715b5a5c569640cc5a293bc3bada078d562b43f2 (diff) |
emms-lastfm: Don't show status messages when getting metadata
darcs-hash:20070409014302-1bfb2-2a784b75760d612ace6af8c25284c1787479e0c1.gz
-rw-r--r-- | emms-lastfm.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emms-lastfm.el b/emms-lastfm.el index ffb1e20..2f587c8 100644 --- a/emms-lastfm.el +++ b/emms-lastfm.el @@ -529,7 +529,8 @@ If DATA is given, it should be a list." (interactive) ;; we don't want to have hundreds of open buffers, so kill the old one now. (when emms-lastfm-buffer (kill-buffer emms-lastfm-buffer)) - (let ((url-request-method "GET")) + (let ((url-request-method "GET") + (url-show-status nil)) (setq emms-lastfm-buffer (url-retrieve (concat emms-lastfm-radio-base-url |