Skip to content

Commit 48047f8

Browse files
committed
- Small fix in ObservableWithBuckets but still not ready for consumption
1 parent 1489424 commit 48047f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ESPressio_ObservableWithBuckets.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace ESPressio {
3535
if (observers == nullptr || observers->empty()) { return; } // If there are no Observers, return
3636

3737
for (auto observer : *observers) { // For each Observer...
38-
callback(observer); // ...call the callback (we know that it is of type `ObserverType`)
38+
callback(observer->GetObserver()); // ...call the callback (we know that it is of type `ObserverType`)
3939
}
4040
}
4141
public:

0 commit comments

Comments
 (0)