Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Errors loading a SAZ file when extension is not enabled. #27

Closed
jprknight opened this issue Feb 22, 2019 · 3 comments
Closed

Errors loading a SAZ file when extension is not enabled. #27

jprknight opened this issue Feb 22, 2019 · 3 comments
Assignees
Labels
Fix Known Fix coming in next release

Comments

@jprknight
Copy link
Owner

No description provided.

@jprknight
Copy link
Owner Author

ResponseUserControl.cs:

MakeLoadSaz changes from:

    public void MakeLoadSaz(object sender, FiddlerApplication.ReadSAZEventArgs e)
    {
            FiddlerApplication.Prefs.SetBoolPref("extensions.EXOFiddlerExtension.LoadSaz", true);
            FiddlerApplication.Prefs.SetStringPref("extensions.EXOFiddlerExtension.sFileName", e.sFilename);
            FiddlerApplication.Prefs.SetStringPref("extensions.EXOFiddlerExtension.sContext", e.sContext);

            LiveTraceHelperGroupBox.Visible = false;

            SessionDataGroupBox.Visible = true;
    }

To:

    public void MakeLoadSaz(object sender, FiddlerApplication.ReadSAZEventArgs e)
    {
        if (bExtensionEnabled) {
            FiddlerApplication.Prefs.SetBoolPref("extensions.EXOFiddlerExtension.LoadSaz", true);
            FiddlerApplication.Prefs.SetStringPref("extensions.EXOFiddlerExtension.sFileName", e.sFilename);
            FiddlerApplication.Prefs.SetStringPref("extensions.EXOFiddlerExtension.sContext", e.sContext);

            LiveTraceHelperGroupBox.Visible = false;

            SessionDataGroupBox.Visible = true;
        }
    }

@jprknight
Copy link
Owner Author

Same needed in Office365AuthUserControl.cs

@jprknight jprknight self-assigned this Feb 22, 2019
@jprknight jprknight added the Fix Known Fix coming in next release label Feb 22, 2019
@jprknight
Copy link
Owner Author

Fixed in new version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Fix Known Fix coming in next release
Projects
None yet
Development

No branches or pull requests

1 participant