diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2016-05-25 06:40:55 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2016-05-25 06:40:55 +0000 |
| commit | a05439fb77f57457459eef919e70e76e09ff319b (patch) | |
| tree | 01e141fe64fe1eefdd3407c6e8c0044622b7f873 /src/plugins/Transports | |
| parent | 71f0250d69c61e07cbf3ca78100058022a54bf1d (diff) | |
| download | qmmp-a05439fb77f57457459eef919e70e76e09ff319b.tar.gz qmmp-a05439fb77f57457459eef919e70e76e09ff319b.tar.bz2 qmmp-a05439fb77f57457459eef919e70e76e09ff319b.zip | |
http plugin: added https support
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@6388 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Transports')
| -rw-r--r-- | src/plugins/Transports/http/httpinputfactory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Transports/http/httpinputfactory.cpp b/src/plugins/Transports/http/httpinputfactory.cpp index 9660877c3..a148e2229 100644 --- a/src/plugins/Transports/http/httpinputfactory.cpp +++ b/src/plugins/Transports/http/httpinputfactory.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2013 by Ilya Kotov * + * Copyright (C) 2009-2016 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -30,7 +30,7 @@ const InputSourceProperties HTTPInputFactory::properties() const { InputSourceProperties p; - p.protocols << "http"; + p.protocols << "http" << "https"; p.name = tr("HTTP Plugin"); p.shortName = "http"; p.hasAbout = true; |
