Private GIT
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
Jackett
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vlbox
Jackett
Commits
189483b2
Commit
189483b2
authored
Feb 7, 2016
by
flightlevel
Browse files
Options
Downloads
Patches
Plain Diff
BitMeTv: Add instructions
BitMeTv: Add instructions to turn on SSL
parent
7312c8c2
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Jackett/Indexers/BitMeTV.cs
+1
-1
1 addition, 1 deletion
src/Jackett/Indexers/BitMeTV.cs
src/Jackett/Models/IndexerConfig/ConfigurationDataCaptchaLogin.cs
+5
-1
5 additions, 1 deletion
...ett/Models/IndexerConfig/ConfigurationDataCaptchaLogin.cs
with
6 additions
and
2 deletions
src/Jackett/Indexers/BitMeTV.cs
+
1
−
1
View file @
189483b2
...
...
@@ -42,7 +42,7 @@ namespace Jackett.Indexers
client
:
c
,
logger
:
l
,
p
:
ps
,
configData
:
new
ConfigurationDataCaptchaLogin
())
configData
:
new
ConfigurationDataCaptchaLogin
(
"Ensure that you have the 'Force SSL' option set to 'yes' in your profile on the BitMeTv webpage."
))
{
}
...
...
This diff is collapsed.
Click to expand it.
src/Jackett/Models/IndexerConfig/ConfigurationDataCaptchaLogin.cs
+
5
−
1
View file @
189483b2
...
...
@@ -18,13 +18,17 @@ namespace Jackett.Models.IndexerConfig
public
HiddenItem
CaptchaCookie
{
get
;
private
set
;
}
public
ConfigurationDataCaptchaLogin
()
public
DisplayItem
Instructions
{
get
;
private
set
;
}
/// <param name="instructionMessageOptional">Enter any instructions the user will need to setup the tracker</param>
public
ConfigurationDataCaptchaLogin
(
string
instructionMessageOptional
=
null
)
{
Username
=
new
StringItem
{
Name
=
"Username"
};
Password
=
new
StringItem
{
Name
=
"Password"
};
CaptchaImage
=
new
ImageItem
{
Name
=
"Captcha Image"
};
CaptchaText
=
new
StringItem
{
Name
=
"Captcha Text"
};
CaptchaCookie
=
new
HiddenItem
(
""
)
{
Name
=
"Captcha Cookie"
};
Instructions
=
new
DisplayItem
(
instructionMessageOptional
)
{
Name
=
""
};
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment