mirror of
https://github.com/greenshot/greenshot
synced 2025-08-20 21:43:24 -07:00
Fixed boolean logic for Confluence logged-in check
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1669 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
7669f78de6
commit
6326c5a9f1
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ namespace GreenshotConfluencePlugin {
|
|||
}
|
||||
|
||||
public override IEnumerable<IDestination> DynamicDestinations() {
|
||||
if (ConfluencePlugin.ConfluenceConnectorNoLogin.isLoggedIn) {
|
||||
if (!ConfluencePlugin.ConfluenceConnectorNoLogin.isLoggedIn) {
|
||||
yield break;
|
||||
}
|
||||
List<Confluence.Page> currentPages = ConfluenceUtils.GetCurrentPages();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue