Skip to content

Commit

Permalink
Merge branch 'hotfix/2.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-miasik committed Feb 28, 2022
2 parents c3a933a + 09f7415 commit 5c61744
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion UnityPomodoro/Assets/AdrianMiasik/Scripts/PomodoroTimer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ private void InitializeManagers()
{
m_hotkeyDetector.Initialize(this);
m_confirmationDialogManager.Initialize(this);
m_notifications.Initialize(GetTimerSettings());
m_notifications.Initialize(GetSystemSettings());
}

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ public class NotificationManager : MonoBehaviour
[SerializeField] private TextAsset m_xmlToastNoAlarm;

// Cache
private TimerSettings settings;
private SystemSettings settings;

public void Initialize(TimerSettings settingsConfiguration)
public void Initialize(SystemSettings systemSettings)
{
settings = settingsConfiguration;
settings = systemSettings;
}

/// <summary>
Expand Down

0 comments on commit 5c61744

Please sign in to comment.